body{
    margin: 0;
    padding: 0;
    background-color: rgb(25, 25, 25);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

nav ul {
    display: flex;
    align-items: center;
    display: flex;
    list-style: none;
    justify-content: center;
}

nav ul li{
    
    margin: 0 15px;
}

nav ul li a{
    color: white;
    text-decoration: none;
}
a:hover{
    color: rgb(27, 168, 250);
    font-size: 20px;
}

div{
    
    display: flex;
    flex-direction: column;
    text-align: center;
   
   
}

.fondo{
    margin: 0;
    width: 100%;
    font-size: 300px;
    color: rgba(27, 168, 250, 0.027);
}

.links-contact{
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.links-contact a{
    text-decoration: none;
    color: white;
}


.contact-container p{
    margin: 0;
    font-size: 30px;
    
}
.contact-container{
    position: absolute;
    margin-left: 400px;
    margin-top: -400px

}

button{
    width:300px ;
    height:50px ;
    border-radius: 10px;
    margin-left: 400px;
    margin-top: 30px;

}

button:hover{
    background-color: black;
    color: white;
}

footer{
    
    display: flex;
    justify-content: center;
    align-items: center;
    
}



