body {
  background-color: #dad7cd;
  color: #011627;
  font-family:'Courier New', Courier, monospace;
  font-weight: 500;
  margin: 0px;
  padding: 0px;
}

h1, h2, h3 {
    font-family: 'EB Garamond', 'Courier New', Courier, monospace;
    font-weight: 700;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* nav bar */
#nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #028090;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.3rem;
}

#nav li a {
  display: flex;
  padding: 10px 40px;
  text-decoration: none;
  color: #fdfffc;
  margin: 0px;
  transition: background-color 0.3s;
}

#nav li a:hover {
  background-color: #00a896;
}

#nav .active {
  background-color: #00a896;
}

/* hero */
#hero {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
  gap: 50px;
  padding: 0 20px;
  max-width: 1200px;
}

#desc {
  width: 400px;
  max-width: 100%;
  font-family: 'EB Garamond', 'Courier New', Courier, monospace;
}

#desc h1 {
  font-size: 2rem;
  word-wrap: break-word;
}

#desc p {
  word-wrap: break-word;
  font-size: 1.2rem;
}

#victor {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 6px solid #00a896;
}

a {
  text-decoration: none;
}

a.text-primary {
  color: #033041 !important;
  transition: color 0.3s;
}

a.text-primary:hover {
  color: #05668d !important;
}

.icon {
  width: 100px;
  max-height: 100px;
  margin: 5px 5px;
}

.social {
  width: 50px;
  margin: 5px 5px;
}

/* scroll to top */
*,
html {
  scroll-behavior: smooth !important;
}

#scrollToTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #03256c;
  color: white;
  cursor: pointer;
  border-radius: 8px;
  padding: 15px 50px;
  font-size: 15px;
  font-weight: bold;
}

/* footer */
#footer {
  text-align: center;
}

#footer p,
#footer a {
  color: #033041 !important;
}

/* about section */
#about {
  padding: 50px;
  background-color: #f4f4f9;
  color: #011627;
  text-align: center;
}

#about h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

#about p {
  font-size: 1.2em;
  line-height: 1.6;
}

/* media queries */
@media only screen and (max-width: 992px) {
  #hero {
    gap: 30px;
    margin: 40px auto;
  }

  #victor {
    width: 300px;
    height: 300px;
  }

  #desc {
    width: 350px;
  }
}

@media only screen and (max-width: 767px) {
  #hero {
    flex-direction: column;
    gap: 20px;
    margin: 30px auto;
  }

  #victor {
    width: 250px;
    height: 250px;
  }

  #desc {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 400px) {
  #hero {
    padding: 0 15px;
    margin: 20px auto;
  }

  #victor {
    width: 250px;
    height: 250px;
  }

  #desc h1 {
    font-size: 1.5rem;
  }
}

#attributions {
  display: flex;
  align-items: center;
  flex-direction: column;
}
