body{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    background-color: lightblue;
    margin: 0;
    padding: 20px;
    width: 100%;
}

h1 {padding:15px;}

h2 {padding: 15px;}

p {padding: 15px;}

.thunderbolt{
    width: 100%;
    position:absolute;
    top: 5%;
    text-align: center;
    font-family: Lightningvolt;
    font-size: 100px;
    color: yellow;
    animation: thunderbolt 5s infinite;
}

.aquatics {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    width: 100%;
    font-size: 50px;
    color: lightslategray;
    position:absolute;
    top: 20%;
    text-align: center;
    animation: thunderbolt 5s infinite;
}

banner video{
    width: 100%;
}

.canvas {
   width: 200px;
   height: 200px;
   border-radius: 50%;
   -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
   transform: translate(400%, 400%);
   position: absolute;
   bottom: 97%;
   left: -15%;
}

.cover {
    width: 500%;
    height: 500%;
    position: absolute;
    top: -205%;
    left: -200%;
    z-index: 10;
    animation: myfirst 16s infinite;
    overflow: hidden;
}

@keyframes thunderbolt {
    0% {opacity: 0;}
    5% {opacity: .8;}
    15% {opacity: .4;}
    25% {opacity: 1;}
    35% {opacity: .4;}
    45% {opacity: .8;}
    50% {opacity: 0}
    55% {opacity: .8;}
    65% {opacity: .4;}
    75% {opacity: 1;}
    85% {opacity: .4;}
    95% {opacity: .8;}
    100% {opacity: 0;}
}

@keyframes myfirst {
    0%   {opacity: 0;}
    20%  {opacity: .1;}
    40%  {opacity: .2;}
    60%  {opacity: .3;}
    80%  {opacity: .4;}
    100% {opacity: .5;}
  }

  /* About page css */
content {
    position: absolute;
    top: 10%;
}

#staff h2 {
    padding-left: 2%;
    padding-right: 2%;
}

#staff h3 {
    padding-left: 2%;
    padding-right: 2%;
}

.staff {
    display: grid;
    grid-template-columns: 2fr 5fr;
    padding-bottom: 20px;
}

.staff img {
    width: 30%;
    float: right;
    padding-left: 2%;
    padding-right: 2%;
    margin-left: 30%;
    border-radius: 50%;
}

.stafftext {
    padding: 2%;
    display: inline-block;
}

    /* Add a black background color to the top navigation */

    .topnav {
        overflow: hidden;
        background-color: #333;
        position: relative;
        z-index: 20;
      }

      .topnav img {
        height: 50px;
        padding-left: 20px !important;
      }

      .topnav ul {
        list-style-type: none;
        float: right;
        display: flex;
        padding: 0;
        margin: 0;
      }

      .topnav a {
        padding: 0px 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        text-decoration: none;
        font-size: 17px;
        height: 50px;
      }

      .topnav a.icon {
        background: black;
        display: none;
        position: absolute;
        right: 0;
        top: 0;
      }

      .topnav a:hover {
        background-color: #ddd;
        color: black;
      }

      .topnav a.active {
        background-color: #04AA6D;
        color: white;
      }

/*  Mobile Navigation  */

@media screen and (max-width: 600px) {
    .thunderbolt{font-size: 50px;}
    .aquatics {font-size: 25px; top: 12%;}
    .canvas {
        width: 100px;
        height: 100px;
        transform: translate(200%, 200%);
        bottom: 87%;
        left: 0%;
        }
    .cover {
        width: 600%;
        height: 600%;
        position: absolute;
        top: -260%;
        left: -250%;
        z-index: 10;
        animation: myfirst 16s infinite;
        overflow: hidden;
    }
}
@media screen and (max-width: 600px) {
  .staff {
    display: block;
  }
  .staff img{
    width: 90% !important;
  }
  .stafftext {
    display: block;
  }
}

@media screen and (max-width: 600px) {

  .topnav ul {display: none;}
  .topnav a.icon {
    float: right;
    display: flex;
    vertical-align: middle;
    }
  }

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive ul {
    display: initial;
    height: 50px;
    float: none;
  }
}