h1 {
    text-align: center;
    background-color: #456;
    color: #fff;
    margin: 0 0 30px 0;
    padding: 30px;
    font-size: 42px;
}

form {
    display: flex;
    flex-direction: column;
    width: 400px;
    margin: 30px auto 42px;
    background-color: rgba(192,198,238, 0.6);
    padding: 16px 6px;
    align-items: center;
    box-shadow: 0 0 6px rgba(0,0,0, 0.3);
}

input, button {
    width: 90%;
    height: 30px;
    margin-bottom: 20px;
    padding: 6px;
    font-size: 24px;
    text-align: center;
}

#calcBtn {
    width: 94%;
    height: 48px;
    border: none;
    background-color: #456;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(0,0,0, 0.3);
    transition: all 0.3s ease-in-out;
}
#calcBtn:hover {
    background-color: rgb(26,214,5);
    color: #000;
}

#resultBox {
    width: 90%;
    height: 0px;
    transition: all 0.7s ease-in;
}
#resultBox.show {
    height: 250px;
}

h2 {
    display: flex;
    align-items: center;
    font-family: Arial;
    opacity: 0;
    transition: all 0.3s ease-in-out 0.6s;
}

#resultBox.show h2 {
    opacity: 1;
}


h2 span {
    flex: 0.5;
    font-size: 18px;
    text-align: right;
}
h2 span:nth-child(even) {
    /* flex: 0.7; */
    font-size: 24px;
    text-align: left;
    margin-left: 16px;
    color: #f17203;
}

.content {
    width: 90vw;
    margin: 0 auto;
}
.htwo {
    color: #0346f1;
    display: block;
    opacity: 1;
    margin-top: 30px;
    font-size: 30px;
}
p {
    font-size: 20px;
    line-height: 1.5;
    text-align: justify;
    width: 96%;
    margin: 0 auto;    
}
table {
    margin: 20px 30px;
    font-size: 18px;
    border-collapse: collapse;
}
td {
    border: 2px solid #03bb00;
    padding: 10px;
}
ul {
    margin: 20px auto 42px;
}
li {
    font-size: 20px;
    margin-bottom: 16px;
    margin-right: 20px;
    color: #8c00f8;
    text-align: justify;
}

.spon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.spon div {
    width: 96%;
    margin: 2px auto;
}

@media only screen and (max-width: 600px) {
  h1 {
      font-size: 5.4vw;
  }
  p {
      text-align: left;
  }
  form {
      width: 93vw;
  }
}