html, body{
    margin: 0;
    padding: 0;
}

body{
    background-color: #f2f2f2;
}

h1{
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 4em;
    line-height: 1.1em;
    margin: 0;
    padding: 0;
    
}

p{
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 1em;
    margin: 0;
    padding: 0;
    line-height: 1.6em;
}

a{
    color: inherit; /* blue colors for links too */
    text-decoration: inherit; /* no underline */
}

body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

main{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75vh;
}

.wrapper{
    padding: 10vh 10vw;
}

.logo{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10vh;

}

#logo1{
    width: 100px;
}

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

.text p{
    align-self: flex-start;
    font-size: 1.3em;
}

.text a{
    align-self: flex-start;
    margin-top: 5vh;
    font-size: 1em;
    color: blue;
}

footer{
    background-color:  #fff197;
    min-height:25vh;
    display: flex;
    align-items: center;
}

.wrapper-footer{
    min-width: 80%;
    padding: 5vh 10vw 5vh 10vw;
}

#logo2{
    height: 2vh;
    margin-bottom: 1vh;
}

#two{
    display: flex;
    justify-content: space-between;
}

.none{
    margin: 0;
    padding: 0;
    font-size: 0.9em;
}



@media only screen and (max-width: 800px) {
    h1{
        font-size: 3em;
    }

    #logo2{
        height: 1.8vh;
    }

    #two{
        flex-direction: column;
    }
    #two div{
        margin-bottom: 3vh;
    }
  }