/* 
Variables:
    --text-color

Fonts:
    ubuntu
    anton
    roboto
*/

main {
    display: flex;
    justify-content: center;
    font-family: ubuntu;
    padding-top: 60px;
    padding-bottom: 60px;
}

.content-box {
    width: 60%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    border-radius: 20px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}

.text.title {
    font-weight: bold;
    font-size: 20px;
}

.rover-option:hover {
    text-decoration: underline;
    cursor: pointer;
}