body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: black; /* Set the background color to black */
    background-image: url(https://images.unsplash.com/photo-1618123069754-cd64c230a169?q=80&w=1374&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
        background-repeat: no-repeat;
    
}
   
h1{
    color: white;
    font-size: 400%;
    
    text-align: center;
}

a{
    color: #EBE3D5;
    text-align: center;
    font-size: 250%;
    text-decoration: none;
    list-style-type: none;
    display: block;

    margin-bottom: 30px;
}




div{
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    margin-bottom: 10px;
    text-align: center;
    
    
    


}

footer {
    
    color: white;
    text-align: center;
    padding: 1em;
    position: fixed;
    bottom: 0;
    width: 100%;
}


@media (max-width: 768px) {
    
    

    h1{
        font-size: 30px;
        text-align: center;
    }
    a{
        font-size: 24px;
        display: block;
        margin-bottom: 30px;
    }

    div{
        display: block;
        margin-top: 25%;
        height: 100%;
        width: 100%;
    }


    footer {
    
        color: white;
        text-align: center;
        padding: 1em;
        position: fixed;
        bottom: 0;
        width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    
    }
    
}

@keyframes colorTransition {
    0% {
        color: rgb(76, 224, 76);
    }
    100% {
        color: rgb(240, 11, 11);
    }
}

 a {
    display: inline-block;
    animation: colorTransition 2s infinite alternate; /* Adjust duration and animation behavior */
}