html {
  font-size: 13px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  height: 100vh;
  font-family: "Outfit", serif;
}
main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
section {
  height: 100vh;
}
object {
  height: 100vh;
}
h1 {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
}
.reveal {
  font-size: 16px;
}
.reservation {
  position: absolute;
  top: 50%;
  text-align: left !important;
  transform: translateY(-50%);
  padding: 0;
  width: 20%;
}
input,
select {
  width: 100%;
  border: none;
  padding: 6px 7px;
  border-bottom: 3px solid #545454;
  margin-bottom: 15px;
  margin-top: 0px;
  font-weight: 500;
  background: transparent;
}
textarea {
  width: 100%;
  padding: 10px 7px;
  border: none;
  background-color: #e3e3e3;
  border-radius: 10px;
  margin-top: 15px;
  font-weight: 500;
  margin-bottom: 8px;
}
#submitButton {
  border: 4px solid !important;
  border-radius: 270px;
  background-color: transparent;
  font-weight: 700;
  padding: 10px 10px;
  font-size: 16px;
  cursor: pointer;
}
.msg {
  position: absolute;
  background: #fff;
  padding: 40px;
  width: 16%;
  border-radius: 20px;
  font-size: 22px;
  text-align: center;
  border: 3px solid #000;
  display: none;
  opacity: 0;
}
.msg .like {
  width: 80px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.msg span{
    position: absolute;
    right: 10px;
    top: 8px;
    cursor: pointer;
    font-size: 30px;
    color: #f70404;
}
@media only screen and (max-device-width: 700px) {
  .reservation {
    width: 100%;
    padding: 10px;
  }
  .reservation h1.reveal {
    font-size: 25px !important;
    margin-bottom: 20px;
  }
  input,
  select {
    margin-bottom: 22px;
  }
  .msg {
    width: 86%;
  }
  .msg span{
    position: absolute;
    right: 20px;
    top: 12px;
    font-size: 40px;
    color: #f70404;
  }
}
