body {
    margin: 0;
    padding: 0px;
    background-color: rgb(83, 83, 83);
}

.header{
    border-bottom: 15px solid black;
    border-top: 15px solid black;
    background-image: url(bcg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.header h1 {
    font-size: 50px;
    width: 60%;
    margin: 0 auto;
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 800;
    font-style: italic;
    text-shadow: 13px 8px 3px #000000, -2px -2px 0px #000000;
    color: rgb(46, 201, 212);
}

form {
    background-color:rgb(185, 185, 185);
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 3%;
    padding: 1%;
}

.question {
    margin-bottom: 5%;
    font-size: 16px;
}


.question div {
    display: list-item;
    list-style-type: none;
    text-align: left;
    margin-top: 5px;
    margin-left: 25%;
}

.select-container {
    display: flex;
    justify-content: center;
}

select {
    text-align: center;
    width: 75%;
    padding: 5px;
}

.submitButton{
    margin: 8%;
    text-align: center;
    align-items: center;
    justify-content: center;
    transform: scale(2);
}

.back{
    text-align: center;
    font-size: 20px;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 2%;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-style: italic;
    text-shadow: 7px 5px 2px #000000, -2px -2px 0px #000000;
    transition: 500ms;

}

.back a{
    text-decoration: none;
    color: white;
}

.back:hover{
    transform: scale(1.2);
    transition: 300ms;
}

.back a:hover{
        transition: 300ms;
    color: rgb(46, 201, 212);
}