body {
    margin: 0;
    padding: 0;
    background: grey;
}

.wrapper {
    background: white;
    height: 80vh;
    width: 65%;
    margin: 15vh 5% auto auto;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.main {
    padding: 5vh 5vh;
    margin-right: 58vh;
    text-align: justify;
    word-spacing: -1px;
}

.topbar {
    position: fixed;
    top: 5vh;
    left: 0;
    width: 100vw;
    height: 10vh;
    background: black;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding-right: 15vh;
    gap: 2vh;
    z-index: 1000;
}

.topbar-button {
    width: 15vh;
    height: 6vh;
    background: orange;
    color: black;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}

.topbar-button:hover {
    background: red;
}

.sidebar {
    position: fixed;
    top: 0vh;
    left: 12vh;
    width: 25vh;
    height: 100vh;
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15vh;
    gap: 2vh;
}

.sidebar-button {
    width: 45vh;
    height: 5vh;
    background: orange;
    color: black;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}

.sidebar-button:hover {
    background: red;
}