body {
  background: #F6F6F6;
  color: #333333;
}


h1, h2, h3, h4, h5, h6 {
  color: #444444;
  font-family: 'Helvetica';
  font-size: 2VW;
}

.container {
   max-width: 100%; /* Set your desired maximum width for larger screens */
   margin: 0 auto; /* Center the content on larger screens */
   font-family: 'Helvetica';
}

ul {
  margin: 0;
}

.bg-steel {
  background-color: #5f788a;
}

.site-header .navbar-nav .nav-link {
  color: #cbd5db;
}

.site-header .navbar-nav .nav-link:hover {
  color: #ffffff;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}

.content-section {
  background: #ffffff;
  padding: 1VW 1VW;
  border: 1VW solid #dddddd;
  border-radius: 3px;
  margin-bottom: 1VW;
}

.marginauto {
    margin: 0 auto;
    display: block;
}

.button {
    border: none;
    color: white;
    padding: 2.5VW 1VW;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 3VW;
    margin: 0.6VW 0.6VW;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
}

.button:hover {
    box-shadow: 0 6px 8px 0 rgba(0,0,0,0.24),0 8px 25px 0 rgba(0,0,0,0.09);
    text-decoration: none;
    color: white;
    font-size: 3VW;
}


table, th, td {
      text-align: center;
      border: 1px solid silver;
      border-collapse: collapse;
      table-layout: fixed;
      font-size: 1.3VW;
    }


@media screen and (min-width: 768px) {
    body {
        max-width: 100%; /* Set your desired maximum width for larger screens */
        margin: 0 auto; /* Center the content on larger screens */
    }

    .button {
    border: none;
    color: white;
    padding: 0.7VW 0.4VW;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.7VW;
    margin: 0.3VW 0.3VW;
    cursor: pointer;
    width: 80%;
    border-radius: 5px;
    }

    .button:hover {
    box-shadow: 0 6px 8px 0 rgba(0,0,0,0.24),0 8px 25px 0 rgba(0,0,0,0.09);
    text-decoration: none;
    color: white;
    font-size: 1.7VW;
    }

    table {
       width:80%
    }
}

.button.rainbow {
    background: linear-gradient(to bottom,
        blue 0%,
        blue 15%,
        red 15%,
        red 35%,
        black 35%,
        black 65%,
        yellow 65%,
        yellow 85%,
        green 85%,
        green 100%);
    color: white;
}