body {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #e3e3e3;
    background-color: #232323;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

p {
    font-size: 1em;
    margin-bottom: 2px;
    margin-top: 2px;
}

a {
    text-decoration: none;
    color: #a526c4;
}

a:hover {
    text-decoration: none;
    color: #e3e3e3;
}

#main-wrapper {
    background-color: #333;
    border-radius: 20px;
    padding: 20px 0px 0px 0px;
}

#main-wrapper a {
    transition: all .25s;
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

#main-wrapper a:hover {
    transition: all .25s;
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px;
    background-color: #232323;
}

#main-image {
    margin-left: auto;
    margin-right: auto;
    width: 200px;
}

#main-title {
    margin-left: auto;
    margin-right: auto;
    width: 500px;
    text-align: center;
}

#toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    background-color: #636363;
    border-radius: 0px 0px 20px 20px;
}

#toolbar li {
    margin: 5px;
    padding: 10px;
    color: #e3e3e3;
    font-weight: 600;
    border-radius: 10px;
}

#toolbar li a {
    color: #e3e3e3;
}

#toolbar li:hover {
    color: #a526c4;
    font-weight: 600;
    background-color: #232323;
}

#toolbar li a:hover {
    color: #a526c4;
}

#content-wrapper {
    max-width: 900px;
    padding: 20px 100px 20px 100px;
    background-color: #e3e3e3;
    color: #232323;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
}

#content-wrapper p {
    margin-top: 10px;
}

#content-wrapper .buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

#content-wrapper .buttons button {
    text-align: center;
    border-radius: 10px;
    padding: 10px;
    font-size: 1em;
    font-weight: 600;
    background-color: #232323;
    color: #e3e3e3;
    box-shadow: none;
    border: none;
}

#content-wrapper .buttons button:hover {
    background-color: #a526c4;
    color: #e3e3e3;
    transition: all .25s;
}

#content-wrapper .buttons button a {
    color: #e3e3e3;
}

#content-wrapper .buttons button a:hover {
    background-color: #a526c4;
}