*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
}
body{
    font-size: 62.5%;
    font-family: 'Lato', sans-serif;
    background-image: url(images/img-1.jpg);
    background-position: center;
    background-size: 100%;
    background-repeat: repeat;
}
.main{
    font-family: 'Lato', sans-serif;
    height: 95vh;
    width: 95vw;
    margin: 2rem auto;
    border-radius: 10px;
    background-attachment: fixed;
    background-image: linear-gradient( to right bottom, rgba(211, 47, 47,0.75),rgba(198, 40, 40,0.75), rgba(183, 28, 28,0.75));
    color: #ffebee;
    text-align: center;
    position: relative;
    
}
.main .main-header{
    font-size: 2rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    padding: 2rem 0;
}

/* user */
.user{
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
    padding: 1rem 0;
}
/* guy */
.user .guy{
    padding: 2rem;
}
.user .guy h2{
    font-size: 1.6rem;
    font-family: 'Lato', sans-serif;
    padding: .5rem;
    letter-spacing: .3rem;
    font-weight: 800;
}
/* girl */
.user .girl{
    padding: 2rem;
}
.user .girl h2{
    font-size: 1.6rem;
    font-family: 'Lato', sans-serif;
    padding: .5rem;
    letter-spacing: .3rem;
    font-weight: 800;
}
.name{
    font-size: 1.6rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    padding: .5rem;
    border-bottom: solid 2px #ffeb38;
    border-top: none;
    border-right: none;
    border-left: none;
    border-radius: 8px;
}
/* button */
.calc{
    display: block;
    text-align: center;
    margin: 1rem auto;
    padding: .5rem 1rem;
    border: none;
    border-radius: 5px;
    background-color: #ffebee;
    color: #b71c1c;
    font-family: 'Lato', sans-serif;
    letter-spacing: .5rem;
    font-weight: 800;
    transition-property: all;
    transition-delay: .2s;
    transition-timing-function: ease-out;
}
.calc:hover{
    background:  linear-gradient( to right bottom, rgba(211, 47, 47,1),rgba(198, 40, 40,1), rgba(183, 28, 28,1));
    color: #ffebee;
}
/* footer */
.footer{
margin-top: 30vh;
}
.footer .social a{
    color: #ffebee;
}
.footer .social a i{
    padding: .5rem;
    font-size: 2rem;
}
.footer p {
    font-size: 1.2rem;
    font-family: 'Lato', sans-serif;
}
/* answer */
.ans{
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
}
/* modals */

/* display */
.display{
    display: block;
}
 

/* MEDIA breakpoints */
@media (max-width:480px) {
    .main{
        margin: 0;
        height: 100vh;
        width: 100vw;
        border-radius: 0;
    } 
    .user{
        flex-direction: column;
       
    }  
}