body, header, div, input, button {
    font-family: 'Courier New', monospace;
}

.navigation {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em 2.5em 1em 2.5em;
    width: 100%;
    background-color: white;
    z-index: 100;
}

.logo{
    width: 15em;
    height: auto;
}

.navBtns {
    display: flex;
    flex-direction: row;
    gap: 3%;
    width: 30%;
    justify-content: flex-end;
}

.navBtn {
    border: 2px solid rgb(242, 242, 242);
    background-color: rgb(253, 253, 253);
    padding: 1em;
    border-radius: 10px;
    width: 10em;
    height: 3.5em;
}

.main {
    padding-top: 9em;
}

.userPfp {
    width: 1em;
    height: 1em;
    border: solid 0.5px;
    border-radius: 50%;
    margin: 0em 0.2em 0em 0.5em;
}

