body{
    font-family: 'Montserrat', sans-serif;
    margin:0;
}
.container{
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 200px 300px auto auto auto;
    grid-template-areas:
                         'header hero hero'
                         'quotes hero hero'
                         'about about about'
                         'planets planets planets'
                         'footer footer footer'  ;
    justify-items: center;
    align-items: center; 
}
/* header */
.header{
    grid-area: header;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.header__logo{
    margin-bottom: 0;
}
.header__logo img{
    margin: 0;
}
.header__menu{
    display: flex;
}
.header__menu ol{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    font-size: 30px;
    font-weight: 600;
}
.header__menu ol li a{
    margin: 10px;
    text-decoration: none;
    color: crimson;
}
.header__menu ol li a:hover{
    text-decoration: underline;
}
/* hero */
.hero{
    width: 100%;
    align-self: stretch;
    object-fit: contain;
    grid-area: hero;
}
/* quotes */
.quotes__container {
    grid-area: quotes;
    height: auto;
    align-self: self-end;
    justify-self: self-end;
    margin-bottom: 15px;
    margin-left: 20px;
}
#textQuotes {
    margin: 0; 
    width: 570px;
    height: 200px;
    font-family: 'Crimson Pro', serif;
    font-size: 30px;
    align: 
}
.button {
    width: 200px;
    height: 50px;
    background-color: #F94A72;
    border-radius: 4px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 5px solid #e02f58;
    color: #fff;
    font-size:20px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    outline: none;
}
.button:hover{
    background-color: #de788f;
}
/* about */
.story{
    grid-area: about;
    background-color: #F94A72;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    width: 100%;
    text-align: center;
    padding: 5% 10%;
    box-sizing: border-box;
}
.story p{
    margin-left: auto;
    margin-right: auto;
}
/* planetas */
.planets{
    grid-area:planets;
    width: 100%;
}
.planets h2{
    text-align: center;
    font-size: 35px;
    width: 100%;
    box-sizing: border-box;
}
.planets p{
    font-size: 25px;
    width: 100%;
    text-align: center;
}
.dataUser{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}
.dataUser input {
    text-align: center;
    width: auto;
    margin: 10px 25px;
    border-radius: 4px;
    font-size: 25px;
    height: 45px;
    outline: none;
    border: 1px solid grey;
}

.containerPlanetas{
    font-family: 'Montserrat', sans-serif;
    display: grid;
    height: auto;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
    justify-items: center;
}
.planeta{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.imgPlaneta{
    width: 150px;
    height: 150px;
}
.titlePlaneta{
    text-align: center;
    font-family: 'Crimson Pro', serif;
}
.textsPlanetas{
    text-align: center;
}
.planeta p{
    width: 150px;
    height: 70px;
}
.planeta p, h3{
    margin:5px;
}
/* footer */
.footer{
    grid-area: footer;
    display: flex;
    color: #fff;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 100%;
    background: linear-gradient(to top, rgba(249, 74, 114, 0.9) 0%, rgba(249, 74, 114, 0) 100%);
}
.footer a{
    display: flex;
    align-items: center;
    margin:18px; 
    text-decoration: none;
    color: white;
    font-size: 18px;
}
.footer a:hover{
    text-decoration: underline;
}
.footer a img{
    vertical-align: center;
    width: 50px;
    height: 50px;
}
@media screen and (max-width:768px){
    .container{
        box-sizing: border-box;
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 120px 200px auto auto auto auto;
        grid-template-areas:
                             'header'
                             'hero'
                             'quotes'
                             'about'
                             'planets'
                             'footer'  ;
        justify-items: center;
        align-items: center; 
    }
    .header{
        flex-direction: row;
    }
    
    .quotes__container {
        text-align: center;
        align-items: center;
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .planets h2{
        padding: 0 20px;
    }
    .planets p{
        margin: 0;
        padding: 20px;
        box-sizing: border-box;
    }


    
}
@media screen and (max-width: 580px){
    .header{
        flex-direction: column;
    }
    .header__logo img{
        width: 150px;
    }
    .header__menu ol{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        list-style: none;
        padding: 0;
        font-size: 20px;
        font-weight: 600;
    }
    .planets h2{
        font-size: 18px;
    }
    .planets p{
        width: auto;
        font-size: 18px;
    }
    .story p{
        font-size: 16px;
    }
    .dataUser input{
        font-size: 14px;
        margin: 0 25px 10px 25px;
        height: 30px;
    }
    .button{
        font-size: 14px;
        width: 100px;
        height: 30px;
    }
    .titlePlaneta{
        font-size: 14px;
    }
    .imgPlaneta{
        width: 70px;
        height: 70px;
    }
    #textQuotes {
        height: 150px;
        padding: 0 20px;
        width: auto;
        font-size: 20px;
    }
    .footer{
        font-size: 14px;
        height: 100px;
        width: 100%; 
    }
    .footer a{
        margin: 10px;
        font-size: 14px;
    }
    .footer a img{
        vertical-align: center;
        width: 30px;
        height: 30px;
}
@media screen and (max-width:390px){
    .header{
        flex-direction: column;
    }
    .header__menu ol{
        font-size: 12px;
    }
    
    #textQuotes {
        height: 150px;
        padding: 0 20px;
        width: auto;
        font-size: 20px;
    }
    .story p{
        font-size: 12px;
    }
    .planets h2 {
        font-size: 14px;
    }
    .planets p{
        padding-top:0;
        padding-bottom: 10px;
        font-size: 12px;
    }
    .dataUser input{
        height: 20px;
        width: 130px;
    }
    .titlePlaneta{
        font-size: 12px;
    }
    .imgPlaneta{
        width: 50px;
        height: 50px;
    }
    .planeta p{
        height: 20px;
        padding: 0;
        font-size: 12px;
    }
    .footer a{
        margin: 10px;
        font-size: 10px;
    }
    .footer a img{
        vertical-align: center;
        width: 15px;
        height: 15px;
    }
}