body {
    text-align: center;
    font-size: 1.5rem;
    background-image: url('/imagenes/edificioFondo.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-button img {
    width: 50px;
    height: 50px;
}

section {
    border: 2px solid black;
    border-radius: 40px;
    max-width: 500px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

span {
    border: 2px solid white;
    margin: 10px;
    border-radius: 30px;
    height: 55px;
    background-color: #263238;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
}

span:hover {
    background-color: #455a64;
    transform: scale(1.1);
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: #9e9e9e;
    cursor: pointer;
}

.section2{
    border: 2px solid black;
    border-radius: 40px;
    max-width: 500px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

@media (max-width: 768px) {
    body {
        font-size: 1.2rem;
    }

    section {
        max-width: 90%;
    }
}


@media (max-width: 480px) {
    body {
        font-size: 1rem;
    }

    section {
        max-width: 80%;
        margin: 10px auto;
        padding: 5px;
    }
    .section2{
        max-width: 80%;
        margin: 10px auto;
        padding: 5px;
    }

    .whatsapp-button {
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-button img {
        width: 40px;
        height: 40px;
    }

    span {
        height: 45px;
    }
}

.footerCopy{
    bottom: 0;
    position: fixed;
    text-align: center;
    color: #fff;
}
