html {
  scroll-behavior: smooth;
}

body {
    font-family: "Lexend", sans-serif;
    background-image: url(images/forest-3.webp);
    background-size: cover;
    background-color: #27392c;
}

.wrapper {
    margin: 0 auto;
}

.height {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section {
    padding: 1em;
    margin-left: 4em;
    margin-right: 4em;
    margin-top: 0;
    margin-bottom: 0;
    background-color: rgba(197, 194, 90, 0.7);
    backdrop-filter: blur(0.3em);
    -webkit-backdrop-filter: blur(0.3em);
}

#notice, #closer, #sun, #leave {
    scroll-margin-top: 15em;
}

h1 {
    text-align: center;
    font-weight: 900;
    color: #27392c;
}

p {
    font-weight: 400;
    color: #27392c;
}

footer a {
    color: rgba(197, 194, 90, 1);
}

/*Arrow*/
.arrow {
  animation: bounce 1.5s infinite;
  width: 5em;
  height: 5em;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

.center {
    text-align: center;
}

.enter-again {
    padding: 1em;
    margin-top: 2em;
    background-color: #27392c;
    color: rgba(197, 194, 90, 1);
    text-decoration: none;
}

.enter-space {
    margin-top: 3em;
    margin-bottom: 3em;
}

@media (min-width: 768px) {

  .section {
    padding: 4em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

}