*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins;
}
header{
    padding: 1em 2em;
    display: flex;
    justify-content: space-between;
}
header .logo h1{
    font-size: 1.5em;
    font-weight: 300;
    color: #353535;
}
header .logo h1 span{
    font-weight: 800;
    color: #FB9978;
}
header nav ul{
    list-style:none;
    display: flex;
    align-items: center;
}
header nav ul li{
    margin: 0 24px;
    color: #353535;
    transition: 0.3s;
    cursor: pointer;
}
header nav ul li:hover{
    color: #FB9978;
}
header nav ul li button{
    padding: 6px 24px;
    outline: none;
    border: none;
    font-size: 1em;
    background: #FB9978;
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
    transition: 0.3s;
}
header nav ul li button:hover{
    cursor: pointer;
    background: #fc8760;
    box-shadow: 0 12px 24px #ffc4b0;
}
.hero{
    background: url(hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: auto;
    height: 500px;
    text-align: center;
}
.hero .container{
    padding:10% 0 ;
}
.hero .container h1{
    font-size: 2.5em;
    font-weight: 400;
    color: #353535;
}
.hero .container p{
    margin:0 0 24px 0;
    font-size: 1em;
    color: #353535;
}
.hero .container div{
    margin: auto;
    padding: 12px 24px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 24px #eee;
    width: 40em;
    display: flex;
}
.hero .container div img{
    width: 24px;
}
.hero .container div input{
    margin-left: 12px;
    padding: 0 auto;
    border: none;
    font-size: 1em;
    background:none;
    outline: none;
    color: #353535;
}
main{
    padding: 5em;
    text-align: center;
}
main h1{
    padding: 10px 0;
    font-weight: 300;
    font-size: 2em;
    color: #353535;
}
main button{
    outline: none;
    border: none;
    background: #FB9978;
    color: #fff;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 1em;
    transition: 0.3s;
}
main button:hover{
    cursor: pointer;
    background: #fc8760;
    box-shadow: 0 12px 24px #ffc4b0;
}
main > div{
    margin: 100px 0;
    display: flex;
    justify-content: space-between;
}
main > div > div img{
    transition: 1s;
}
main > div > div:hover img{
    transform: rotate(5deg) scale(103%);
    border-radius: 200px;
    cursor: pointer;
}
main > div > div > div{
    align-items: center;
    display: flex;
    justify-content: space-between;
}
footer{
    background: #FFEAE3;
    padding: 5em;
}
footer .links{
    display: flex;
    justify-content: space-between;
}
footer .links .logo_newsletter div h1{
    font-size: 1.5em;
    font-weight: 300;
    color: #353535;
}
footer .links .logo_newsletter div h1 span{
    font-weight: 800;
}
footer .links .logo_newsletter div p{
    font-size: 1em;
    color: #353535;
}
footer .links .logo_newsletter .subscribe div{
    margin: 8px 0;
    padding: 12px 24px;
    background-color: #fff;
    border-radius: 10px;
    width: 20em;
    display: flex;
}
footer .links .logo_newsletter .subscribe{
    margin-top: 50px;
}
footer .links .logo_newsletter .subscribe div input{
    width: 20em;
    outline: none;
    border: none;
    margin-left: 12px;
    background: none;
    color: #353535;
}
footer .links .logo_newsletter .subscribe button{
    padding: 12px 24px;
    outline: none;
    border: none;
    background: #FB9978;
    transition: 0.5s;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    border-radius: 10px;
}
footer .links .logo_newsletter .subscribe button:hover{
    cursor: pointer;
    background: #fc8760;
    box-shadow: 0 12px 24px #fc8760;
}
footer .links .list h1{
    margin-bottom: 24px;
    font-size: 1.2em;
    font-weight: 800;
    color:#353535;
}
footer .links .list p{
    margin-bottom: 12px;
    font-size: 1em;
    font-weight: 300;
    color:#353535;
    transition: 0.3s;
    cursor: pointer;
}
footer .links .list p:hover{
    color:#fc8760;
}
footer > p{
    margin-top: 100px;
    text-align: center;
    color: #b45738;
}