*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: black;
    display: flex;
    justify-content: center;
    
    height: 200vh;
}

.container{
    width: 80%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
} 

.container h1{
    font-size: 3rem;
    margin-bottom: 20px;
}

.container p{
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.container a{
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    padding: 10px 20px;
    border: 1px solid white;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.arrow {
    position: absolute;
    margin: auto;
    bottom : 10%;
    margin-top: 50px;
    color: yellow;
    font-size: 1.5rem;
    font-weight: 900;
    border: 3px solid yellow;
    padding: 15px 20px;
    border-radius: 50%;
    transition: all 1s ease;
    opacity: 1;
    animation: bounce 2s infinite;
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(0);
    }
    40% {
        transform: translateY(30px);
    }
    60% {
        transform: translate(0);
    }   
    
}


.fade-in{
    opacity: 1;    
    transition: all 2s ease-in;
}

.fade-out {
    opacity: 0;
    transition: all 2s ease-out;
}

