
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

h1 {
    padding: 0 16px;
    font-size: 2em;
}

#casamarmol {
 width: 100%;
 height: 100%;
}


#loading {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 21, 18);
    display: flex;
    justify-content: center;
    align-items: center;
}

.dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 200px;
}

.dot {
    width: 20px;
    height: 20px;
    background-color: rgb(232,220,170);
    border-radius: 50%;
    animation: pulse 1s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(118,77,26); /* Cambia el color aquí */
    font-size: 14px;
    font-weight: bold;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.logo {
    position: absolute;
    width: 265px; /* Ajusta según sea necesario */
    height: 135px; /* Ajusta según sea necesario */
    animation: pulse 1s infinite;
        justify-content: center;

}