:root{
    --Violet: hsl(257, 40%, 49%);
    --Soft_Magenta: hsl(300, 69%, 71%);
    --Font_poppins: 'Poppins', sans-serif;
    --Font_OpenSans: 'Open Sans', sans-serif;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-image: url("/images/bg-mobile.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--Violet);
    font-size: 15px;
}
.hero{
    /* border: 1px solid saddlebrown; */
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    
}

.container{
    /* border: 1px solid red; */
    width: 94%;
    height: 100vh;
    margin: 0 auto;
}

.hero__huddle{
    /* border: 1px solid saddlebrown; */
    display: flex;
    width: 150px;
    height: 100px;
}

.main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main__ilustracion{
    /* border: 1px solid saddlebrown; */
    width: 100%;
    max-width: 700px;
    height: 237px;
    display: block;
    object-fit: cover;
    margin: 20px auto;
}

.main__text{
    margin-top: 20px;
}

h1{
    font-size: 25px;
    font-family: var(--Font_poppins);
}

.main__text p{
    font-size: 17.5px;
    font-family: var(--Font_OpenSans);
    /* padding-top: 10px; */
}


.main__text p, h1{
    text-align: center;
    margin: 10px 20px;
    color: #fff;
    margin-bottom: 20px;
}

.main__button{
    margin-top: 20px;
    font-family: var(--Font_OpenSans);
    text-decoration: none;
    color: var(--Violet);
    background-color: #fff;
    display: inline-block;
    padding: 10px 70px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 7px 30px #000;
}
.main__button:hover{
    background-color: var(--Soft_Magenta);
    color: #fff;

}

.footer{
    padding: 50px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.icon{
    padding: 15px;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.fa-facebook-f{
    color: #fff;
}
.fa-twitter{
    color: #fff;
}
.fa-instagram{
    color: #fff;
}