body {
    width:100vw;
    min-height:100vh;
    background-color: #eeeeee;
    color:black;
    padding:0;
    margin:0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

main {
    scroll-behavior: smooth;
}

h1,h2,h3,h4,h5,h6 {
    color : teal;
}

a {
    color: teal;
}

header {
    width:100%;
    height: 10vh;
    background-color: teal;
    color: #f4fdee;
    padding-top: 0.5em;
}

header h1 {
    color : #f4fdee;
    margin:0;
    text-align: center;
    font-size: 3em;
    font-weight: 700;
}

main {
    width:70%;
    min-height: 85vh;
    margin: auto;
    background-color: #f4fdee;
    padding: 1em;
}

nav {
    width:100%;
}

nav ul {
    display: grid;
    width:80%;
    margin : auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    list-style: none;
}

nav ul li {
    text-align: center;
    font-size: 200;
}

h2 {
    font-size: 2.5em;
}

h3 {
    font-size: 2em;
}

img {
    width : 100%;
}

.sr-only {
    display: none;
}