body {
    background: #141414;
    font-family: Arial, serif;
}
a {
    text-decoration: none;
    text-decoration-color: white;
    color: white;
}
.wrapper {
    display: grid;
    grid-template-columns: 1fr 5fr;
    height: 98vh;
    grid-column-gap: 20px;
}
.content {
    width: 98%;
}
.left-menu-wrapper {
    background: #212121;
    height: 98vh;
    border-radius: 7px;
}
.title {
    background-image: linear-gradient( 135deg, #cc6600 10%, #DE4313 100%);
    height: 50px;
    border-top-right-radius: 7px;
    border-top-left-radius: 7px;
}
.title-text {
    text-align: center;
    padding-top: 15px;
    color: white;
    font-weight: bolder;
    font-size: 18px;
}
.left-menu-buttons {
    padding-top: 100px;
    display: grid;
    grid-row-gap: 25px;
}
.unselected-button {
    background-image: linear-gradient( 135deg, #FD6E6A 10%, #FFC600 100%);
    height: 50px;
}
.selected-button {
    background-image: linear-gradient( 135deg, #cc6600 10%, #ff9900 100%);
    height: 50px;
}
.button-text {
    text-align: center;
    padding-top: 15px;
    color: white;
    font-weight: normal;
    font-size: 16px;
}
.content-wrapper {
    height: 98vh;
    display: grid;
    background-image: linear-gradient( 200deg, #181818 10%, #202020 100%);
    border-radius: 14px;
}
.content {
    color: white;
    text-align: center;
    padding-top: 5vh;
}