body {
  background-color: #436850;
  margin: 0px;
  color: #fbfada;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.header-container {
  background-color: #12372a;
  margin: 0px;
  padding: 20px;
}
table {
  margin-top: 20px;
}
table th {
  font-size: 20px;
  margin: 0 30px;
  text-decoration: none;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 10px;
  transition: 0.5s;
}
table a {
  color: white;
  text-decoration: none;
}
table th:hover {
  background-color: #35a77f;
}
.header-container a {
  color: #fbfada;
  text-decoration: none;
  font-size: 30px;
  padding: 5px;
}
.calc-container {
  background-color: #12372a;
  margin-top: 20px;
  max-width: 900px;
  padding: 50px;
  border-radius: 50px;
}
.input-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: FBFADA;
}
.input-container h2 {
  font-size: 40px;
}
.input-container p {
  border: 2px solid #fbfada;
  border-radius: 10px;
  padding: 10px 0;
}
.input-container img {
  height: 30px;
  margin: 0px;
  transform: translate(30px, 3px);
  filter: invert(100%);
}
.bt {
  height: 30px;
  font-size: 20px;
  text-align: center;
  font-weight: bolder;
  background: none;
  border: none;
  outline: none;
  transform: translate(0, -5px);
  color: #fbfada;
}
.bt::-webkit-inner-spin-button {
  display: none;
}
.output-container {
  margin-top: 50px;
  border: 2px solid #fbfada;
  color: #fbfada;
  max-width: 500px;
  min-height: 80px;
  border-radius: 20px;
}
#price {
  font-size: 35px;
}
.footer {
  position: relative;
  font-size: 20px;
  top: 10px;
  text-align: center;
  color: #fbfada;
}
.footer img {
  height: 30px;
  margin-right: 8px;
  transform: translate(0, 8px);
}
/* Desktop styles */
@media (min-width: 768px) {
  /* Styles for screens wider than 768px */
}

/* Tablet styles */
@media (min-width: 480px) and (max-width: 767px) {
  /* Styles for screens between 480px and 767px */
}

/* Mobile styles */
@media (max-width: 479px) {
  .header-container a {
    color: #fbfada;
    text-decoration: none;
    font-size: 20px;
    padding: 5px;
  }
  table {
    margin-top: 20px;
  }
  table a {
    font-size: 15px;
    margin: 0 5px;
    text-align: center;
    text-decoration: none;
    color: white;
    border-bottom: 3px solid transparent;
    transition: 0.5s;
  }
  .calc-container {
    background-color: #12372a;
    margin-top: 20px;
    max-width: 200px;
    padding: 50px;
    border-radius: 30px;
  }
  .input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
  }
  .input-container h2 {
    font-size: 20px;
  }
  .input-container p {
    border: 2px solid white;
    border-radius: 10px;
    padding: 2px 5px;
  }
  .input-container img {
    height: 20px;
    margin: 0px;
    transform: translate(0, 5px);
    filter: invert(100%);
  }
  .bt {
    height: 30px;
    font-size: 10px;
    margin-left: 5px;
    font-weight: bolder;
    background: none;
    border: none;
    outline: none;
    transform: translate(0, -1px);
    color: white;
  }
  .bt::-webkit-inner-spin-button {
    display: none;
  }
  .output-container {
    margin-top: 20px;
    border: 2px solid white;
    color: white;
    max-width: 300px;
    min-height: 90px;
    border-radius: 20px;
    overflow: hidden;
  }
  #price {
    font-size: 18px;
  }
  iframe {
    width: 200px;
    height: 112px;
  }
}
