@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Text:wght@200..700&display=swap');


body,
html {
    margin: 0;
    padding: 0;
    font-family: "Stack Sans Text", sans-serif;
}

.construction {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
}


.construction:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("./fondo.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.construction-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.construction-content h1 img {
    width: 200px;
    height: auto;
    margin-bottom: 20px;

}

.construction-content strong {
    font-size: 24px;
    color: #3e3e3e;
    font-weight: bold;
    text-transform: uppercase;
}

.construction-content p {
    font-size: 16px;
    color: #3e3e3e;
    font-weight: 300;
}

.whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: #3e3e3e;
    font-weight: 400;
    width: fit-content;
    text-decoration: none;
    text-align: center;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
}

.whatsapp svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;

}

.whatsapp svg path {
    fill: #3e3e3e;
    transition: all 0.3s ease-in-out;
}

.whatsapp:hover {
    color: #25D366;
    transform: translateY(-3px);
    cursor: pointer;
}

.whatsapp:hover svg path {
    fill: #25D366;
}