* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

#cont {
    width: 100vw;
    min-height: 100vh;
    background-image: url(https://i.pinimg.com/originals/72/ff/09/72ff09d26dbb6c2abb3e39239f0cdf0b.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    
}

form {
    width: 500px;
    backdrop-filter: blur(5px);
}

fieldset {
    padding: 20px;
}

form label, form input, form select {
    display: block;
}

.sports label, .sports input {
    display: inline;
}

.sports input {
    width: 20px;

}

.sports label {
    margin-right: 40px;
}

form input, form select, form textarea {
    width: 100%;
    font-size: 25px;
    background-color: transparent;
    color: rgb(255, 255, 255);
    outline: none;
    padding: 5px;
    margin-bottom: 8px;
}

form select {
    background-color: black;
    color: white;
    
}

form button {
    width: 100%;
    margin-top: 50px;
    font-size: 30px;
    padding: 3px;
    border-radius: 10px;
    font-weight: bold;

}

form button:hover {
    background-color: blanchedalmond;
}