
.outfit-uniquifier {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

*{
    margin: 0;
    padding: 0;
}

body{
    position: relative;
    height: 100vh;
    background-image: url('../multimedia/dravita\ background\ 3\ Drammophon_Mesa\ de\ trabajo\ 1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment:fixed;
    
}

.contenedor{
    position: absolute;
    top: 83%; /* Un poco más abajo del centro */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vh;

}

.boton-wpp {
    background-color: rgba(94, 94, 94, 0.39);
    padding: 1rem 3rem; /* Menos alto, más ancho */
    border-radius: 12px;
    color: rgb(0, 0, 0);
    font-size: 1.2rem;
    border: 3px solid rgb(0, 0, 0);
    cursor: pointer;
    transition: all ease 0.3s;
    white-space: nowrap; /* Evita que el texto se divida en dos líneas */
    text-align: center;
    box-shadow: 1px 1px 1px  rgba(0, 0, 0, 0.5);
    font-family:"Outfit", sans-serif;
    font-weight: 650;
    letter-spacing: 0.5vh;
    width: 100%;

}

.icon-whatsapp{
    font-weight: bolder;
    color: rgb(255, 255, 255);
}


.boton-wpp:hover {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    box-shadow: 2px 2px 2px  rgba(0, 0, 0, 0.5);
    transform: scale(1.05); /* Aumenta el tamaño un 5% */
}

.contspoti{
    position: absolute;
    top: 50%; /* Un poco más abajo del centro */
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50vh;
    width: 50vh;
    
}
.contspoti iframe {
    border-radius:12px;
    width:100%;
    height:100%;
    border: 0;
    box-shadow: 1px 8px 8px 1px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    /* Estilos para pantallas pequeñas */
    body {
        background-size: cover;
        background-position: top center;
    }

    .boton-wpp {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }

    .contenedor {
        top: 75%; 
        width: 80%;
    }

    .contspoti{
        top: 45%;
        width: 80%;
    }
}


