body {
    background-color: black;
    color: white;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

h1 {
    background: rgba(128, 128, 128, 0.521);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin: 10px;
    top: 5%;
}

#quotesList {
    background: rgba(128, 128, 128, 0.295);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin: 10px;
    margin-top: 0px;
}

#quote1, #quote3 {
    font-size: 20px;
}

#quote2 {
    font-size: 36px;
    font-weight: bold;
    color: rgb(0, 255, 0);
}

#transportControls {
    display: flex;
    flex-direction: row;
}

button {
    width: 50%;
    height: 50px;
    margin-top: 1%;
    font-size: 20px;
    font-weight: bold;
    color: gray;
    background-color: transparent;
    border-radius: 10px;
    border-color: gray;
    border-width: 3px;
    border-style: solid;
}

button:hover {
    background-color: gray;
    color: black;
    transition: 0.5s;
    cursor: grab;
}

#next {
    margin-right: 5%;
}

#back {
    margin-right: 5%;
    margin-left: 5%;
}

#extraInfo {

}

a:visited {
    color: white;
}