body {
  background-color: rgba(0, 0, 0, 0.2);
  background-image: url("./assets/bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#header {
  text-align: center;
  background-color: #fcb804;
  border-radius: 0px 0px 20px 20px;
  position: relative;
  top: 0;
  width: 100%;
  height: 30vh;
  z-index: 0;
  font-size: 1rem;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}

#logo {
  border-radius: 50%;
  -webkit-box-shadow: 0px 10px 21px 8px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 10px 21px 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 10px 21px 8px rgba(0, 0, 0, 0.3);
  height: 15vh;
  transition-duration: 0.5s;
  margin-top: 1vh;
}

section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section h2 {
  font-size: 2rem;
  color: #fff;
  text-shadow: 2px 2px 5px #00000055;
}

section a {
  background-color: #fcb804;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  margin: 1rem;
}
