

body{
    margin: 0;
}

.content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Lato', sans-serif;
    background:
    linear-gradient(217deg, rgba(212, 0, 71,.8), rgba(212, 0, 71,0) 70.71%),
    linear-gradient(127deg, rgba(155, 212, 0,.8), rgba(155, 212, 0,0) 70.71%),
    linear-gradient(336deg, rgba(14, 175, 181,.8), rgba(14, 175, 181,0) 70.71%);
    height: 100vh;
    color:white;
    border:10px dotted white;
}

h1{
    font-family: 'Mansalva', cursive;
    font-size: 70px;
    text-align: center;
    color:white;
    margin-top: 100px;
}

.validate{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.validate.hide{
    display: none;
}
Label{
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
Input{
    padding: 15px;
    font-size: 25px;
    color: #707070;
}
button.submit, button.generator{
    width: 150px;
    text-align: center;
    height: 150px;
    text-transform: uppercase;
    box-sizing: border-box;
    font-size: 30px;
    border:4px dotted rgba(212, 0, 71, 0.5);
    color:rgba(212, 0, 71, 0.5);
    border-radius:50%;
    margin: 0 auto;
    margin-top: 40px;
    box-shadow: 3px 3px 20px rgba(255,255,255, 0.2);
    background: rgba(255,255,255, 0.5);
    cursor:pointer;
}
button.generator{
    width: 200px;
    height: 200px;
}

div.generator{

    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
}
div.favour{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   transform:scale(0);
    padding: 40px;
    background: rgba(255,255,255, 0.5);
    text-align: center;
    width: 500px;
    height: 200px;
    color:rgba(212, 0, 71, 0.5);
    font-size: 30px;
    transition:transform 0.4s ease;
    margin-top: 50px;
    font-family: 'Mansalva', cursive;

}
.favour.appear{
 transform:scale(1);
    transition:transform 0.4s ease;

}
/*.generator{*/
    /*display: none;*/
/*}*/

.generator.show{
    display: flex;
}
