* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #FAF9F6;
    font-family: sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 0;    
}

a {
  font-family: sans-serif;
  text-decoration: none;   
}

nav {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  justify-content: center;
  background-color: #c70000;
  box-shadow: 0px 0px 8px 0px rgba(30, 30, 30, 0.5);
}

    .nav-list {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      list-style: none;
      margin-left: 250px;
      margin-right: 250px;
    }

    .nav-list .nav-left {
      text-align: center;
      list-style: none;
      font-size: 16px;
      line-height: 0.7;
    }

        .nav-left-sub {
          padding-top: 5px;
          font-size: 8px;
        }

    .nav-list .nav-right ul {
      display: flex;
      justify-content: space-between;
      align-items: center;
      list-style: none;
      margin-right: 0px;
    }

    .nav-right-list {
      display: flex;
      gap: 20px;
    }

    .nav-list a {
      color: #FAF9F6;
      transition: color 0.2s ease-in;
    }

    .nav-list a:hover {
      color: #5a5a5a;
    }


.div-container {
    padding-left: 250px;
    padding-right: 250px;
    justify-items: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 200px;
    }

    .headline {
        padding-top: 25px;
        width: 100%;
    }
    
    .content {
        display: flex;
        padding-top: 25px;
        justify-items: center;
        justify-content: center;
        align-items: center;
        }

    .card {
        padding: 25px;
        background-color: #ffffff;
        border: solid #c70000 ;
        border-radius: 15px;
    }

    .term {
        font-size: 14px;
        line-height: 2;
        text-align: justify;
    }

    .footnote {
      display: flex;
      margin: 25px;
      justify-content: center;
    }






/*____________________________________________________________________________________________________________________________________*/

/* Mobile Styles */
@media only screen and (max-width: 1024px) {

  body {
    font-size: 10px;
  }

  .nav-list {
    flex-direction: row;
    align-items: left;
    margin-left : 15px;
    margin-right: 15px;

  }

  .nav-list .nav-left {
    list-style: none;
    font-size: 12px;
    line-height: 0.6;
  }

      .nav-left-sub {
        font-size: 6px;
      }

  .nav-list .nav-right ul {
    flex-direction: row;
    align-items: right;
  }

  .nav-right-list {
    gap: 20px;
  }

  .div-container {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 150px;
  }

    .headline {
      padding-top: 15px;
    }

    .content {
      padding-top: 15px;
    }

    .card {
      padding: 15px;
      border-radius: 15px;
  }

  .term {
      font-size: 12px;
  }

  .footnote {
    margin: 15px;
  }


}





/*____________________________________________________________________________________________________________________________________*/
@media only screen and (min-width: 1600px) {

  .nav-list {
    margin-left: 500px;
    margin-right: 500px;
    }

  .div-container {
    padding-left: 500px;
    padding-right: 500px;
  }

  .div-contact {
    padding-left: 500px;
    padding-right: 500px;
  }
  

}