:root {
    --Fondo1: hsl(257, 40%, 49%);
    --Noidea: hsl(300, 69%, 71%);

}

body {
    background:var(--Fondo1) url(./images/bg-desktop.svg) no-repeat;
    background-size: cover;
}
/**Txt*/
h1{
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    font-size: 600;
}
p, button{
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-size: 400;
    padding: 10px 0px;
}
button{
    background-color: white;
    color: var(--Fondo1);
    border: none;
    border-radius: 50px;
    padding: 20px 80px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5); 
    cursor: pointer;
}
button:hover{
    background-color: var(--Noidea);
    color: white; 
}

/**class*/

.container{
    width: 70%;
    margin: auto;
    display: flex;
    text-align: center;
    flex-direction: column;
}
.info{
    color: white;
}
.imgBody{
    width: 100%;
}
.imgLogo{
    margin: 50px;
    width: 40%;
}
.Box-icons{
    display: flex;
    justify-content: center;
    padding: 20px 0px;
}
.iconos{
    width: 20px;
    border: 1px solid white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0px 10px;
}

.iconos:hover{
    border-color: var(--Noidea);
    filter: brightness(0) saturate(100%) invert(73%) sepia(97%) saturate(7499%) hue-rotate(295deg) brightness(101%) contrast(98%);
}

@media (min-width: 750px) {
    h1{ 
        font-size: 45px;
    }
    .imgBody{
        width: auto;
    }
    .container{
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: left;
        min-height: 100vh;
        position: relative;
    }
    .info{
        margin-left: 50px;
        padding: 20px 0px; 
    }
    .imgLogo{
        position: absolute;
        width: auto;
    } 
    .icon1{
        width: 100px;
    }
    .Box-icons{
        justify-content: flex-end;
        margin-top: 70px;
    }
    
}