body {
    background-color: #B7DDD8;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    color: white;
}

nav {
    width: 100vw;
    height: 10%;
    display: flex;
    align-items: center;
    background-color: #ffffff75;
    font-weight: bold;
    position: fixed;
    z-index: 10;
    overflow: hidden;
}

#space {
    width: 2.5%;
}

#nav-bookmark {
    color: white;
    font-weight: 400;
    align-items: center;
    padding-left: 2.5%;
    padding-right: 2.5%;
    padding-top: 50%;
    padding-bottom: 50%;
    background-color: unset;
}

#nav-bookmark:hover {
    color: #B3DBD6;
    background-color: white;
    font-weight: 600;
}

nav h1 {
    color: #87BDB7;
    font-size: 25px;
    opacity: 100%;
    padding-left: 3%;
}

#content {
    width: 100%;
    padding-top: 5%;
    display: flex;
    overflow: hidden; 
}

#left {
    width: 70%;
}

#right {
    width: 30%;
    overflow: hidden;
    position: relative;
}

section {
    width: 100%;
    padding: 5%;
    display: none;
}

.show-hide {
    width: 1.25em;
    height: 1.25em;
    margin-right: 0.3em;
}

h1 {
    font-size: 53px;
    padding-left: 3%;
}

h2 {
    font-size: 35px;
    padding-left: 4%;
    display: flex;
    align-items: center;
}

#logo {
    margin-top: 30%;
    max-width: 80%;
}



/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

a.nostyle:link {
    text-decoration: inherit;
    color: inherit;
    cursor: auto;
}

a.nostyle:visited {
    text-decoration: inherit;
    color: inherit;
    cursor: auto;
}