*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

#cont{
    width: 100vw;
    min-height: 100vh;
    background-image: url(https://s379153.brambling.cdu.edu.au/web0/Session1/images/lemon-lime.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 80px;
}


form{
    width: 500px;
    backdrop-filter: blur(5px);
}

fieldset{
    padding: 20px;
}

form label, form input, form select, form textarea{
    display: block;
}

.sport label, .sport input{
    display: inline-block;
}

.sport input{
    width: 20px;
}

.sport label{
    margin-right: 40px;
}

form input, form select, form textarea{
    width: 100%;
    font-size: 25px;
    background-color: transparent;
    outline: none;
    padding: 5px;
    margin-bottom: 8px;
}

form button{
    width: 100%;
    margin-top: 15px;
    font-size: 30px;
    padding: 3px;
    border: none;
    border-radius: 10px;
    background-color: rgb(235, 153, 3);
    color: white;
    font-weight: bold;
    cursor: pointer;
}

form button:hover{
    background-color: rgb(230, 175, 74);
}

.time{
    display: flex;
    gap: 10px;
    align-items: center;
}

.time select{
    width: 120px;
}

main p{
    font-size: 50px; 
    color: red; 
    font-family: 'Courier New', Courier, monospace;
 }
 
 p#second{
     color: greenyellow;
 }
 
 p.blue{
     color: #0000FF;
 }
 header{
     background-color: aquamarine;
     display: flex;
     align-items: center;
 }
 p.green{
     color: green;
 }
 main{
     background-color: lightblue;
     min-height: calc(100vh - 140px);
     padding: 10px 20px 50px 20px;
 }
 footer{
     background-color: brown;
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     color: white;
     text-align: center;
     height: 40px;
 }
 

  header img{
    height: 80px;
  }
 nav{
     flex: 1;
     display: flex;
     justify-content: space-around;
     overflow: hidden;
     height: 25px;
 }
 
 nav a{
     text-decoration: none;
     color: tomato;
     text-shadow: 0px 25px 1px black;
     font-family: Verdana, Geneva, Tahoma, sans-serif;
     text-transform: uppercase;
     transition: 0.5s;
     height: 50px;
 }
 
 nav a:hover{
     transform: translateY(-25px);
 }
 
 main img{
     width: 50%;
 }
 
 div.cont{
     display: flex;
     gap: 20px;
 }