body {
  font-family: sans-serif;
  margin-top: 80px;
  padding: 30px;
  background-color: rgb(80, 115, 151);

}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(125, 164, 207);
    border-radius: 5px;
    box-shadow: 0 0 25px 0 black;
}



header *{
  display: inline;
}

header h1{
  margin-left: 20px;
}

header a{
  color: black;
  text-decoration: none;
}

header img {
  height: 80px;
  margin-left: 20px;
}

header li{
  margin: 20px;
}

header li a {
  color: black;
  text-decoration: none;
}
@media (max-width: 650px) {
  nav {
    margin-top: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 50px;
  }
  nav li {
    padding-bottom: 5px;
  }
}
@media (max-width: 914px){
  iframe{
    width: auto;
    height: auto;
  }
}
main {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

#form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border-radius: 5px;
}

.contents {
  display: flex;
  flex-direction: column;
  align-self: center;
  text-align: center;
}

.btn {
  border-radius: 3px;
  padding: 0 20px;
  height: 35px;
  font-size: 1em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  font-weight: 700;
  border: 2px black solid;
  box-shadow: 0 0 5px 0 black;
  margin: 20px;
}

#prices {
  display: flex;
  margin-top: 60px;
  justify-content: center;
  flex-direction: column;
}

.product {
  margin: 10px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-self: center;
  align-items: center;
  text-align: center;
  border: 1px solid black;
  border-radius: 5px;
  background-color: rgb(125, 164, 207);
  box-shadow: 0 0 15px 0 black;
  width: calc(2*100% /3);
}

.product .level {
  background-color: rgb(80, 115, 151);
  width: 100%;
  padding: 10px 0;
  font-weight: 700;
}

.product p {
  margin-bottom: 20px;
}

