* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: #4e4e4e;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.contentBox{
  position: fixed;
  width: 650px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background:#ffffff;
  border-radius: 10px;
  border: 3px solid #019267;
  display: flex;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 1;
  z-index: 2;
  padding: 2%;
}

nav {

  background-color: rgb(255, 255, 255);
  border-bottom: 3px solid #7d131f;
}

.banner,
img {
  margin-top: 0.5%;
  vertical-align: middle;
  display: inline-block;
  height: auto;
  max-width: 100%;
  border: none;
  border-radius: 0;
}

input,
text {
  display: block;
  margin-top: 2%;
  margin-bottom: 2%;
  margin-left: auto;
  margin-right: auto;
  font-family: "Prompt", Sans-serif;
  background-color: #f7fafc;
  color: #000000;
  height: 40px;
  width: 300px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid rgb(216, 222, 227);
}

input,
select {
  display: block;
  margin-top: 2%;
  margin-bottom: 2%;
  margin-left: auto;
  margin-right: auto;
  font-family: "Prompt", Sans-serif;
  background-color: #f7fafc;
  color: #1a202c;
  height: 50px;
  width: 600px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid rgb(216, 222, 227);
}

.title,
h2 {
  margin-left: 1%;
  margin-top: 2%;
  font-family: "Prompt", Sans-serif;
  font-size: 45px;
}

.panel {
  margin-top: 2%;
  margin-bottom: 2%;
  background-color: #ffffff;


}

.termpanel {
  padding: 1%;
  margin-left: 25%;
  margin-right: 25%;
  margin-bottom: 2%;
  background-color: #ffffff;
  /*border: 1px solid #1a202c;*/
  border-radius: 25px;
}

.inline {
  width: unset;
  margin: 0 0.5em 0 0;
  vertical-align: middle;
  display: inline-block;
}

.txtred {
  color: #7d131f;
}

.button {
  border: 2px solid #019267;
  color: #019267;
}

.button:hover {
  background-color: #019267;
  color: #ffffff;
}


@media only screen and (max-width: 480px) {

  input,
  select {
    display: block;
    margin-top: 2%;
    margin-bottom: 3%;
    margin-left: auto;
    margin-right: auto;
    font-family: "Prompt", Sans-serif;
    background-color: #f7fafc;
    color: #1a202c;
    height: 60px;
    width: 350px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid rgb(216, 222, 227);
  }

  .termpanel {
    padding: 1%;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 2%;
    background-color: #ffffff;
    /*border: 1px solid #1a202c;*/
    border-radius: 25px;
  }

  .title,
  h2 {
    margin-left: 1%;
    margin-top: 2%;
    font-family: "Prompt", Sans-serif;
    font-size: 25px;
    border-bottom: 0.5px solid #7d131f;

  }
  .contentBox{
    position: fixed;
    width: 300px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background:#ffffff;
    border-radius: 10px;
    border: 3px solid #019267;
    display: flex;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 1;
    z-index: 2;
    padding: 4%;
  }
}