body{
    transition: all 1s ease-in-out;
    background-color: #573e2a;
    background: radial-gradient(rgba(87, 62, 42, 0.5) 55%, rgba(6, 33, 43, 0.5) 45%);
    font-size: 20px;
    font-family: Georgia, Helvetica, Arial;
    font-weight: lighter;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.navbar{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: lighter;
    display: block;
    margin: auto;
    height: 30vw;
    width: 35vw;
    vertical-align: center;
    text-align: center;
    align-content: center;
    align-items: center;
    align-self: center;
    padding: 5px;
}

.items-list{
    font-weight: lighter;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background 1s ease-in-out;
    margin: 0px;
    list-style: none;
    list-style-type: none;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-basis: 20%;
    border: 2px solid white;
    border-radius: 10%;
    background: linear-gradient(to bottom right, rgba(204, 173, 195, 0.5), rgba(123, 115, 148, 0.5));
    justify-content: space-evenly;
}

li{
    height: auto;
    width: auto;
    margin: auto;
    font-weight: lighter;
    background-color: rgba(30, 32, 33, 0.8);
    color: rgba(3, 182, 252, 1.0);
}

.button{
    transition: all 1s ease-in;
    font-weight: lighter;
    padding: 1vw;
    outline: 5px auto rgba(30, 32, 33, 1.0);
    outline-offset: 2px;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-decoration: none;
    background-color: rgba(30, 32, 33, 0.8);
    color: rgba(3, 182, 252, 1.0);
}

.button:hover{
    background-color: rgba(3, 182, 252, 1.0);
    background: linear-gradient(rgba(3, 182, 252, 0.5), rgba(3, 182, 252, 0.8), rgba(3, 182, 252, 0.5));
    color: rgba(30, 32, 33, 1.0);
    font-weight: normal;
}

label{
    font-weight: lighter;
    text-wrap: pretty;
    overflow-wrap: break-word;
    white-space: pre-wrap;       /* css-3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}
