body {
    text-align: center;
    font-family: "Caveat Brush", cursive;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    height: 100%;
    margin-bottom: 35px;
}

#main {
    transition: margin-right .5s;
}

h1 {
    font-size: 42.5px;
    margin-bottom: 15px;
}

#buttons {
    display: flex;
    justify-content: space-around;

    .container {
        display: flex;
        align-items: center;
        max-width: 165px;
    }

    div {
        display: flex;
        flex-direction: column;
    }

    h2 {
        font-size: 27px;
        min-height: 70px;
        display: flex;
        align-items: center;
        margin-bottom: 5px;
    }
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 155px;
    margin: 7.5px;
    background-color: rgb(242, 242, 242);
    color: black;
    border: 2.5px solid rgb(161, 161, 161);
    border-radius: 5px;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 14.5px;
    box-sizing: border-box;
}

.colored {
    border-color: rgb(72, 170, 72) !important;
    background-color: rgb(180, 230, 180) !important;
}

.started {
    border: 3px solid rgb(72, 170, 72);
}

.achievementButton {
    position: fixed;
    top: 25px;
    right: 25px;
}

.fa-trophy {
    color: gold;
}

#achievementOverview {
    font-family: sans-serif;
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: whitesmoke;
    overflow-x: hidden;
    overflow-y: auto;
    transition: 0.5s;
    box-sizing: border-box;
    padding-top: 70px;

    h2 {
        margin-bottom: 30px;
    }
}

.achievementOverview .closebtn {
    position: absolute;
    top: 12.5px;
    right: 30px;
    font-size: 62px;
    background: none;
    border: none;
    cursor: pointer;
    color: #818181;
    display: block;
    transition: 0.3s;
    padding: 0;
}

.closebtn:hover {
    color: black;
}

.hidden {
    display: none;
}