* {
    font-family: "Albert Sans", sans-serif;
    color: #FED116;
}

html {
    overflow: scroll;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: black;
    background-image: url("img/4.jpg");
    background-size: 200%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin: 0px;
}



@media (min-width: 768px){
    body {
    background-color: black;
    background-image: url("img/4.jpg");
    background-size: 40%;
    }
    img{
        max-width: 500px;
    }
}

a{
    text-align: center;
    display: block;
}

h1 {
    text-align: center;
    font-size: 2rem;
}

h2 {
    text-align: center;
    font-weight: 300;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 16px;
    box-sizing: border-box;
    transform: translateY(-100%);
    animation: 0.5s forwards show-nav;
    animation-delay: 1.5s;
}

@keyframes show-nav {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}

#chi-siamo {
    background: linear-gradient(360deg, rgba(0, 0, 0, 1) 71%, rgba(87, 199, 133, 0) 100%);
    padding: 10%;
    margin: auto;
    margin-top: 100vh;
    padding-bottom: 30vh;
}

p {
    text-align: center;
}

img {
    width: 100%;
}

#next-year{
    background-image: url("img/star.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

#instagram{
    position: fixed;
    bottom: 5vh;
    background-color: #FED116;
    color: black;
    padding: 4px 8px;
    border-radius: 8px;
    display: block;
    left: 50%;
    transform: translateX(-50%);
}

#cover{
    height: 200vh;
    width: 100%;
    position: absolute;
    top: 0px;
    background: black;
    opacity: 1;
    animation: 2s forwards show;
    z-index: 1;
}

@keyframes show {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none;
  }
}