* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}
body {
  background-image: url(../images/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
}
main {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5em;
  backdrop-filter: blur (10px);
}

form {
  width: 350px;
  border: 2px solid white;
  padding: 10px;
  border-radius: 5px;

}

fieldset {
  padding: 5px 20px;
  border: 1px solid yellowgreen;
  padding: 10px;
  border-radius: 5px;
}

label,
input {
  display: block;
  color: turquoise;
  border: none;
}

.sports input,
.sports label {
  display: inline;
}

.sports input {
  width: 20px;
}

input {
  width: 100%;
  padding: 8px;
  background-color: transparent;
}
legend {
  color: greenyellow;
}
label {
  margin-top: 10px;
}

#hobby {
  width: 100%;
  height: 40px;
}
button{
    background-color: red;
    width: 100%;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    padding: .5em;
    

}