
body {
    background-color: #ccffff;
    font-family: "Verdana", sans-serif;
    font-size: 100%;
    width: 100%
    align: center;
}

table {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 788px) {
    table {
    width: 100%;
  }
}

img {
     width:100%;
     height:auto;
}

h1{
    font-size: 1.5rem;
    font-weight: normal;
}

@media screen and (max-width: 788px) {
    h1 {
    font-size: 1.2rem;
  }
}

h2{
    font-size: 1.4rem;
    font-weight: normal;
}

@media screen and (max-width: 788px) {
    h2 {
    font-size: 1.2rem;
  }
}

{
  box-sizing: border-box;
}

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

.item {
  display: inline-block;
}

header{
    border-bottom: 1px solid #E2E8F0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 1rem;
    margin-bottom: 0.5rem;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}

.nav-logo {
  width: 23%;
  position: fixed;
  padding: 0rem 0rem;
  margin-top: 0rem;
  z-index: 1;
}

@media screen and (max-width: 788px) {
  .nav-logo {
    width: 33%;
    padding: 0rem 0rem;
  }
}


.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item {
    margin-left: 4rem;
}

.nav-link{
    font-size: 1.1rem;
    font-weight: 400;
    color: #475569;
}

.nav-link:hover{
    color: #482ff7;
}

/* Responsiveness */
@media only screen and (max-width: 788px) {
    .nav-menu {
        position: fixed;
        left: -200%;
        top: 5rem;
        bottom: 5rem;
        flex-direction: column;
        background-color: #ccffff;
        width: 90%;
        height: 75vh;
        border-radius: 20px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
        z-index: 3;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 2.0rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}

table, th, td {
  padding: 5px;
}

.button {
  border: none;
  color: black;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 6px 16px;
  text-align: right;
  text-decoration: none;
  cursor: pointer;
  border-radius: 14px;
}

@media screen and (max-width: 788px) {
  .button {
    font-size: 1.0rem;
  }
}

.tag-image {
  text-align: center;
  display: block;
  position: relative;
  width: 40%;
}

@media screen and (max-width: 788px) {
  .tag-image {
    width: 70%;
  }
}


.image-right {
  float: right;
  width: 50%;
  padding: 5px 5px;
}

@media screen and (max-width: 788px) {
  .image-right {
     float: none;
     align: center;
     width: 70%;
   }
}

a {
    text-decoration: none;
}


ul{
    list-style: none;
}

.partner {
    Border-top: 1px solid #E2E8F0;
}


.fade-in-text1 {
  animation: fadeIn 6s;
  -webkit-animation: fadeIn 6s;
  -moz-animation: fadeIn 6s;
  -o-animation: fadeIn 6s;
  -ms-animation: fadeIn 6s;
}

.fade-in-text2 {
  animation: fadeIn 2s;
  -webkit-animation: fadeIn 2s;
  -moz-animation: fadeIn 2s;
  -o-animation: fadeIn 2s;
  -ms-animation: fadeIn 2s;
}

@keyframes fadeIn {
  0% {opacity: 0; }
  100% {opacity: 1; }
}

@-moz-keyframes fadeIn {
  0% {opacity: 0; }
  100% {opacity: 1; }
}

@-webkit-keyframes fadeIn {
  0% {opacity: 0; }
  100% {opacity: 1; }
}

@-o-keyframes fadeIn {
  0% {opacity: 0; }
  100% {opacity: 1; }
}

@-ms-keyframes fadeIn {
  0% {opacity: 0; }
  100% {opacity: 1; }
}


@media screen and (max-width: 788px) {
  .fade-in-text2 {
    font-size: 1.3rem;


@media screen and (min-width: 788px) {
  li a  {
    font-weight: normal;
  }
}

@media screen and (max-width: 788px) {
  li a {
    font-weight: bold;
  }
}


