*{
    margin: 0;
    padding: 0;
    font-family: "PT Sans", sans-serif;
    cursor: default;
}

:root{
    --primaryBlue : #005dbf;
    --secondBlue : rgb(0,180,204);
    --hoverBlue: rgba(0, 180, 204, 0.074);
    --primaryGray: rgb(107,114,128);
    --secondGray: rgb(206,206,206);
    --liteGray: rgb(245, 245, 245);
    --lgFont: 40px;
    --mdFont: 24px;
}

a{
    cursor: pointer;
}

nav{
    height: 56px;
    width: 100%;
    border-bottom: solid 3px var(--secondBlue);
    position: fixed;
    background: white;
    z-index: 1;
}

nav ul{
    list-style: none;
    display: grid;
    grid-template-columns: auto 1fr auto;
    justify-content: center;
    text-align: center;
    height: 100%;
    align-items: center;
    color: var(--primaryBlue);
}

nav ul li:nth-child(1){
    width: 50px;
}

nav ul li img{
    height: 20px;
    cursor: pointer;
}

nav ul li:nth-child(3) a i{
    cursor: pointer;
    padding: 12px;
    color: var(--primaryBlue);
    font-size: 30px;
}

.container{
    width: 100%;
    min-height: calc(100vh - 59px);
    position: absolute;
    top: 59px;
    padding: 0 40px;
    box-sizing: border-box;
}

.container h2{
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: var(--mdFont);
    color: var(--secondBlue);
}


.container ul{
    list-style: none;
}

.container ul li{
    margin: 16px 0;
    height: 60px;
    display: flex;
    align-items: center;
    box-sizing: border-box;


}

.container ul li a{
    text-decoration: none;
    padding-left: 16px;
    font-size: 20px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid var(--liteGray);
    box-sizing: border-box;
    border-radius: 12px;
    color: var(--primaryGray);
    font-weight: bold;
}

.container ul li a:hover{
    background: var(--hoverBlue);
    border: 1px solid var(--hoverBlue);
    color: var(--primaryGray);
}