html{
    font-family: Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif;
    font-size: 15px;
}
body{
    background-color: #F0F5F9;
    display: grid;
    justify-content: center;
    align-content: center;
}

a{
    text-decoration: none;
    color: black;
}
ol{
    list-style: square inside;
}

.Header {
    line-height: 1;
    margin-bottom: 20px;
}

.container{
    width: 90%;
    height: 100%;
    
    display: grid;
    justify-content: center;
    align-content: center;

    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}


/* Navbar */
.navbar a {
    color: black;
    text-decoration: none;
    font: bold 22px;
    font-family: 'Raleway', sans-serif;
}

a:hover {
    color: #2DA4BA;
}

.navbar {
    /* make it stick */
    position: sticky;
    width: 90%;
    z-index: 1000;
    
    top: 0;
    
    
    /* set background */
    background-color: white;
    padding: 5px 5%;

    /* define flex */
    display: flex;
    justify-content: space-between;
    align-items: center;

    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.logo-image {
    height: 36px
}

.nav-menu {
    list-style-type: none;
    list-style-image: none;
}

.menu-item {
    margin-left: 10px;
}

.bar {
    width: 20px;
    height: 3px;
    background-color: black;
    margin: 4px auto;
}

.menu-icon {
    display: none;
}