
@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');

html {
   
    font-family: 'Lora', serif;
}   

a{
    text-decoration: none;
    color: #007f5f;
}

nav {
    height: 80px;
    background-color: #ffba08;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: space-around;
    border-bottom: 5px solid #3d348b;
    font-size: 1.5em;
    position: sticky;
}

nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: space-around;
    
}

nav li {
    display: flex;
    flex-direction: row;
    align-items:flex-start ;
    align-content: space-around;
    margin-right: 40px;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 40px;
}   


img {
    width: 200px;
    height: 300px;
}


section{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: #7678ed;
    color: white;
    border-bottom: 5px solid #3d348b;
    
}

p {
    font-size: 1.25em;
    margin: 20px;
}


footer {
    display: flex;
    flex-direction: row;
    align-items: space-around;
    background-color: #f35b04;
    color: white;
    height: 80px;
    position: sticky;
    bottom: 0;
    border-top: 5px solid #3d348b ;
}
