*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

body{
    overflow-y: overlay;
    background-color: #fff;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

body > header {
    display: flex;
    justify-content: space-evenly;
    padding: 20px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 2;
    background-color: #fff;
}

.bodyHeaderShadow{
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}

body > header > a {
    cursor: pointer;
}
body > header > nav {
    display: flex;
    align-items: center;
}
body > header > nav > ul{
    list-style: none;
    display: flex;
    gap: 5px;
}
body > header > nav > ul li {
    border-radius: 10px;
    transition: background-color 0.3s;
}
body > header > nav > ul a{
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #010626;
    font-size: large;
    padding: 2px 10px;
    width: 150px;
}
.navActive{
    font-weight: 600;
}

body > header > nav > ul a:visited{
    background-color: #d5e5f2;
}
body > header > nav > ul a:link{
    text-decoration: none;
}

body > header > nav > ul li:hover{
    background-color: #d5e5f2;
}

body > header::after{
    content: '';
    display: block;
    width: 140px;
}

body main{
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
}

body > footer {
    background-color: #0D0E19;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    color: #D7DCE9;
    width: 100%;
    padding: 20px 200px;
    margin-top: auto;
}