body {
  display: flex;
  flex-direction: column;
    margin: 0;
}

.companyInfo {
    position: fixed;
    top: 0;
    width: 100%;     
    display: flex;
    align-items: center;
    background: white;
    z-index: 100;   
}
.menu{
    padding-top: 20px;
    list-style: none;
    display: flex;
    font-family: 'K2D';
    align-items: center;         
    font-size: 16px;
    font-weight: 30px;
    gap: 30px;
    justify-content: center; 
    margin-top: 0;
}
.menu li {
    padding: 0 15px;
    border-right: 1px solid #ccc;
}

.menu li:last-child {
    border-right: none;
}

.menu li img {
    width: 100%;
}

.menu a { 
    text-decoration: none;
    color: #34dbff;
}
.menu a:hover {
    text-decoration:double;
    color: #19fb99;
}

.content{
    margin: 20px;
}

.tableOfContent td {
    text-align: center;
    font-size:20px;
    padding: 10px;
}
.tableOfContent{
    margin-left: -20px;
    font-family:"K2D";
    border-collapse: separate;
    border-spacing: 20px;
}
footer {
    left: 0;
    width: 100%;     
    position: fixed;  
    bottom: 0;     
    z-index: 10;        
    background: transparent;
    opacity: .5;
}
.waves {
    width:100%;
    height:80px;
    display:block;
    }

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}
@keyframes move-forever {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}

.overlay {
    position: absolute;
    top: 25%;   
    left: 30%;   
    transform: translate(-50%, -50%); 
    color: white;
    font-size: 50px;
    font-weight: bold;
    font-family: 'K2D';
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    z-index: 99; 
    pointer-events: none;
}


.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.popup .popuptext {
  visibility: hidden;
  width: 360px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: fixed;
  z-index: 100; 
  top: 20%;
  left: 70%;
}


.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}


.enlarge {
    width: 300px;
    transition: transform 0.3s;
}

.enlarge:hover {
    transform: scale(1.3);
}

.bottom{
    margin: 30px;
    margin-top: 120px;
    font-family: "K2D";
    font-size: 30px;
}
.bottom table{
    background-color: #f2f2f2;
}
.bottom td{
    background-color: #f2f2f2;
    text-align: center;
    font-size:20px;
    padding: 10px;
    padding-left:50px;
    justify-content: center;
    
}

.shimmer{
    margin-top: -10px;
    margin-bottom: -10px;
    font-size: 50px;

    /* Used https://raghavvelan.medium.com/shimmering-text-animation-with-just-html-css-edc9bb035ec1 */
    background: linear-gradient(135deg, #65cb98, #70e4f0, #65cb98);
    background-clip: text;
    color: transparent;
    background-size: 200% 100%;
    animation: shimmer 5s linear infinite;
}


@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}