@import url(https://fonts.googleapis.com/css2?family=Lobster&display=swap);

*{
  margin: 0;
  padding:0;
}

header{
  background-color: grey;
  /* height:75px; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 105px;
}

h1.logo{
  color: white;
  font-family: 'lobster';
  text-shadow: 2px 2px black;
  /* margin-left: 40px; */
  /* display: inline-block; */
  line-height: 75px;
  text-align: center;
}

/* nav{
  display: inline-block;
  width: calc(100% - 313px);
} */

ul.top-nav{
  display: flex;
  justify-content: space-evenly;
  height: 16px;
  overflow: hidden;
}

ul.top-nav li{
  list-style: none;
}


ul.top-nav li a, ul.top-nav li p{
  text-decoration: no;
  font-family: sans-serif;
  color: white;
  font-weight: bold;
  /* text-shadow: 1px 1px black; */
}

ul.top-nav li{
  transition: all 0.5s ease-in-out;
}

ul.top-nav li p{
  color: gold;
  font-size: 1.1em;
}

ul.top-nav li a.black{
  color: black;
}

ul.top-nav li.up:hover{
  /* text-shadow: -1px -1px black; */
  transform: translateY(-18px);
}

footer{
    background: #62a5a1;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    text-align: center;
    color: white;
}

footer address{
  margin-top: 17px;
}

main{
  min-height: 100vh;
  background-color: aqua;
}

article p{
  font-size: 24px;
  font-family: sans-serif;
  line-height: 48px;
}
section{
  /* margin-top: 75px; */
  margin-top: 105px;
}

table{
  /* margin-top: 75px; */
  width: 80%;
  /* margin: 75px auto; */
  margin: 95px auto;
}

.question, .answer{
  font-size: 20px;
  font-family: sans-serif;
  font-weight: bold;
}

.question{
  color: red;
}
.answer{
  color: green;
}
td{
  padding: 20px 0px;

}

.myForm{
  width: 60%;
  margin: auto;
  margin-top: 95px;
  padding-top: 20px;
  font-family: arial;
}

.form_input{
  margin: 15px;
}

.label{
  text-align: right;
  display: inline-block;
}

.input{
  display: inline-block;
  width: 70%;

}

.input input {
  width: 100%;
  padding: 5px;
}

.radio{
  width: 95%;
  margin: 0 auto;
  margin-bottom: 15px;
}

#Movie{
  width: 100%;
  height: 100px;
  resize: vertical;
  max-height: 500px;
}

#button{
  padding: 10px;
  border: none;
  background-color: #3F51B5;
  color: #FFFFFF;
  letter-spacing: 2px;
  width: 60%;
  border-radius: 5px;
  height: 40px;
  transition: all 0.5s ease-in-out;

}

#button:hover{
  background-color: #23348F;
  transform: scale(1.02);
  font-weight: bold;
}


@media all and (min-width: 750px) {

  header{
    height:75px;
  }

  h1.logo{
    display: inline-block;
    margin-left: 40px;

  }

  section{
    margin-top: 75px;
  }


  nav{
    display: inline-block;
    width: calc(100% - 313px);
  }

  table{
    margin: 75px auto;
  }

  .myForm{
    margin-top: 75px;
  }

  .label{
    width: 15%;
  }

  .input input {
    width: 60%;
  }


  #button{
    width:40%;
  }

  .radio{
    width: 67%;
  }
}
