* {
    box-sizing: border-box;
    border: none;
    padding: 0px;
    margin: 0px;
    font-family: "Montserrat", sans-serif;
  }

  body,
  html {
    background-color: #fff;
    margin: 0;
  }

  .header {
    width: 100%;
    min-height: 500px;
    background-color: #eee;
  }

  .header-container {
    max-width: 650px;
    margin: auto;
    padding-top: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .header-container-image {
    max-width: 850px;
    margin: auto;
    margin-top: -200px;
  }

  h1 {
    color: #000;
    font-size: 32px;
    font-weight: 900;
    background-color: #000;
    border-radius: 5px;
    opacity: 0.8;
  }

  .sub-headline {
    font-size: 16px;
    color: transparent;
    font-weight: 500;
    margin-top: 8px;
    background-color: #00000088;
    border-radius: 5px;
    min-width: 350px;
    height: 30px;
    opacity: 0.4;
  }

  .sub-headline i {
    color: red;
  }

  .sub-headline a {
    color: #00000088;
    display: inline;
    text-decoration: underline;
  }

  .logo {
    position: absolute;
    top: 40px;
    left: 40px;
  }

  .logo i {
    font-size: 40px;
    color: #fff;
  }

  .head-image {
    margin-top: 0px;
    width: 100%;
    height: auto;
    max-height: 450px;
    border-radius: 10px;
    object-fit: cover;
    object-position: top center;
  }

  .content {
    max-width: 650px;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    color: #333;
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
  }

  .content img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  a {
    color: rgb(57, 140, 254);
    text-decoration: none;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    cursor: pointer;
  }

  .buttonlink {
    display: inline-block;
    width: fit-content;
    font-size: 16px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    background-color: #2142e7;
    border-style: solid;
    border-width: 0px;
    border-radius: 10px;
    padding: 15px 40px;
    text-decoration: none;
    cursor: pointer;
  }

  @media only screen and (max-width: 600px) {
    .header-container {
      padding-left: 40px;
      padding-right: 40px;
      padding-top: 150px;
    }

    .head-image {
      border-radius: 0px;
    }

    .header {
      min-height: initial;
    }

    .content {
      margin-top: 0px;
      padding: 40px;
    }
  }

  .skeleton-text {
    width: 100%;
    height: 0.7rem;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
    background-color: #eee;
  }

  .skeleton-text:nth-child(2) {
    max-width: 95%;
  }

  .skeleton-text:nth-child(3) {
    max-width: 90%;
  }

  .skeleton-text:nth-child(4) {
    max-width: 95%;
  }

  video {
    border: 1px solid lightgray;
    width: 100%;
    background-color: #eee;
  }

  /* The Modal (background) */
  .modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
  }

  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
  }

  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }

  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }