a {
    color: white;
}

body {
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 25px;
    background-color: rgb(82, 47, 119);
    background-position: center top;
    background-repeat: no-repeat;
  }

fieldset{
    font-size: 35px;
    max-width: 600px;
    background-color: #5F259F;
    min-height: 370px;
}

footer{
    font-size: 16px;
    color: rgb(155, 155, 155);
    text-align: center;
    margin-top: 20px;
}

label{
    font-size: 22px;
}

label.advanced{
    font-size: 16px;
    color: lightgrey;
}

p{
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 0px;
}

select{
    min-width: 130px;
    min-height: 33px;
    margin-left: 90px;
    border-radius: 8px;
}

.radio_buttom{
    margin-left: 269px;
}

.buttom{
    min-width: 90px;
    min-height: 33px;
    border-radius: 7px;
}

div#loading {
    display: none;
    cursor: wait;
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}