@charset "UTF-8";

* {
    padding: 0;
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-decoration: none;
    scroll-behavior: smooth;
}
header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1000;
    background-color: darkcyan;
    padding: 25px;
    text-align: center;
    display: flex;
    justify-content: flex-end;
}
header > nav > a {
    padding: 10px 25px;
    color: white;
    font-size: 20px;
    text-transform: capitalize;
}
header > nav > a.active,
header > nav > a:hover {
    background-color: white;
    color: darkcyan;
}
section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccc;
    font-size: 7em;
    font-weight: bolder;
    padding-bottom: 70px;
    text-transform: uppercase;
    }
    
    h1{
    padding-left:-100px;
    } 
section:nth-child(odd) {
    background-color: #eee;
}