body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-image: linear-gradient(to bottom right, rgb(27, 85, 143), rgb(32, 174, 134));
    background-attachment: fixed;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.card {
    text-align: center;
    width: 450px;
    height: max-content;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgb(219, 248, 246);
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    color: white;
    text-align: center;
}

#p2 {
    text-align: center;
}

h2 {
   color:rgb(27, 85, 143);
}

#login, #signup {
    color: white;
}

.radio {
    display: block;
    margin: 50px 50px;
}

.radio input[type=radio] {
    display: none;
}

.radio input[type=radio]+label {
    width: 400px;
    height: 100px;
    font-size: x-large;
    background-color: rgb(219, 248, 246);
    border-radius: 15px;
    box-shadow: 2px 2px 2px 0 rgba(27, 85, 143, 0.2);
    border: none;
    color: rgb(27, 85, 143);
    padding: 16px 32px;
    text-decoration: none;
    margin: 2px 2px;
    cursor: pointer;
}

.radio input[type=radio]+label:hover {
    box-shadow: 0 2px 4px 0 rgba(32, 174, 134, 0.2), 0 3px 10px 0 rgba(32, 174, 134, 0.19);
    border: none;
}

.radio input[type=radio]:checked+label {
    box-shadow: 0 2px 4px 0 rgba(32, 174, 134, 0.2), 0 3px 10px 0 rgba(32, 174, 134, 0.19);
    border: none;
}

button, input[type=submit] {
    width: 100px;
    height: 50px;
    background-color: rgb(27, 85, 143);
    color: white;
    border-radius: 5px;
    border: none;
}

button:hover, input[type=submit]:hover {
    cursor: pointer;
}

input[type=text] {
    width: 75%;
    height: 40px;
    padding: 12px 20px;
}

input[type=range] {
    width: 75%;
}

#skip {
    padding: 20px;
}