body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: white;
    overflow: hidden;
}

.background {
    background-image: url('datacenter-background.jpg'); /* Reemplaza con la ruta de tu imagen de fondo */
    background-size: cover;
    background-position: center;
    /*filter: blur(5px) brightness(0.6);*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4); /* Capa oscura semitransparente sobre el fondo */
}

.logo {
    width: 300px; /* Ajusta el tamaño del logo según tu necesidad */
    height: auto;
    margin-bottom: 30px;
}

h1 {
    font-size: 3em;
    font-weight: 300;
    letter-spacing: 5px;
    margin: 0;
:;
}

p {
    font-size: 1.2em;
    font-weight: 200;
    margin-top: 10px;
    max-width: 600px;
    :;
}

.social-icons {
    margin-top: 40px;
}

.icon-link img {
    width: 35px; /* Tamaño de los iconos sociales */
    margin: 0 15px;
    transition: transform 0.3s ease;
}

.icon-link img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .logo {
        width: 150px;
    }
}