.fondo {
    background-image: url('img/imagen diamantes.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0; 
    color: #333;
    background-color: antiquewhite;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #333;

}    
header .logo {
    width: 120px; /* Tamaño del logo */
    height: auto;
}
 

.header {
text-align: center;
padding: 20px;
color: #000;
}
nav a {
color: white;
text-decoration: none;
margin: 0 15px;
font-weight: bold;
}

nav a:hover {
text-decoration: underline;
}




.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.welcome {
    text-align: center;
    padding: 50px 0;
}

.welcome h2 {
    color: #043bf0;
}

.services {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.service {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 30%;
}

.service h3 {
    color: #043bf0;
}

footer {

    color: white;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}