* {
  cursor: none;
  scroll-behavior: smooth;
}

body {
  text-align: center;
  background-color: #fefae0;
  display: flex;
  flex-direction: column;
  /* font-family: "Roboto Slab"; */
  font-family: "Roboto Slab", Arial, Helvetica, sans-serif;
  color: #333;
  overflow-x: hidden;
}

h1 {
  margin-top: 7vh;
  font-size: 6em;
}

h2 {
  font-size: 3em;
  margin-top: 1em;
  color: #696969;
}

h3 {
  margin: 10px;
  font-size: 2em;
}

h4 {
  font-size: 2.3em;
}

h5 {
  font-size: 1.5em;
}

p {
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}
a:hover {
  background-color: #e9edc9;
}

i {
  font-style: italic;
}

hr {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 20%;
  background-color: #333;
  height: 2px;
  border: none;
  border-radius: 1px;
}

.wrapper {
  margin-top: 15vh;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  /* background-color: red; */
}

.row {
  /* background-color: blue; */
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.column {
  /* background-color: green; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header {
  text-align: center;
}

.content {
  text-align: center;
  margin-bottom: 10vh;
}
.content img {
  max-width: 25vw;
  max-height: 25vw;
}
.content h3 {
  font-size: 5em;
  background-color: #ccd5ae;
}
.content h4 {
  line-height: 1.5;
}
.content p {
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: 1.2em;
  line-height: 1.3;
}

#header-photo {
  margin-top: 3em;
  height: 33vh;
  outline: 5px solid #ccd5ae;
  outline-offset: -10px;
}

.hello p {
  margin-top: 0.5em;
  color: #333;
  font-weight: bold;
}

#hello-btn {
  margin-top: 3vh;
  background-color: rgba(0000, 0000, 0000, 0000);
  border: none;
  font-size: 2em;
  transition: transform 200ms ease-in-out;
}
#hello-btn a {
  text-decoration: none;
}
#hello-btn:hover {
  transform: rotate(-30deg);
}
#hello-btn a:hover {
  background-color: #fefae0;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fefae0;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

footer {
  width: 100vw;
  background-color: #ccd5ae;
  margin-bottom: 0;
  padding-top: 2em;
  padding-bottom: 2em;
}
footer h4 {
  padding: 10px;
}

#top-emoji {
  transition: transform 200ms ease-in-out;
}
#top-emoji a {
  text-decoration: none;
}
#top-emoji:hover {
  transform: scale(1.3, 1.3);
}
#top-emoji a:hover {
  background-color: #ccd5ae;
}

@media only screen and (max-width: 600px) {
  .ball,
  .inner-ball {
    visibility: hidden;
  }

  h1 {
    font-size: 4em;
  }
  h2 {
    font-size: 3em;
  }
  h3 {
    font-size: 2em;
  }
  h4 {
    font-size: 1.3em;
  }
  h5 {
    font-size: 1.5em;
  }

  .wrapper {
    width: 100vw;
  }

  .content {
    width: 100%;
  }

  .content h3 {
    font-size: 2.5em;
  }

  /* #up-column {
    visibility: hidden;
  } */
}
