/* Import on pages that inherit the main page style */

.wavy {
  animation-name: wavy;
  animation-duration: 1.3s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards; 
  position: relative;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

@keyframes wavy {
  0% {
    top: 0px;
  }
  50% {
    top: -6px;
  }
  100% {
    top: 0px;
  }
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.75);
    
    border-color: white;
    border-left-width: 2.5px;
    border-right-width: 2.5px;
    border-style: solid;
    border-top: none;
    border-bottom: none;
}
ul li {
    float: left;
    overflow: hidden;
    border-color: white;
    border-width: 5px;
    border-style: solid;
    
    border-left-width: 2.5px;
    border-right-width: 2.5px;
    border-bottom: none;
}
ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: bold;
}
ul li a:hover {
    background-color: #2088ff;
}

#content {
    display: flex;
    width: 85%;
    margin: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.75);
    border-color: white;
    border-width: 5px;
    border-style: solid;
    flex-direction: column;
    padding: 50px;
    gap:25px;
}

#navbar {
    display: flex;
    width: 85%;
    margin: auto;
}

body {
    font-family: Core-Bandi-Face;
}

html {
    background: repeating-conic-gradient(#003279 0 25%, #00193c 0 50%) 50% / 76px 76px
}

.text {
    color:white;
    font-size: 25px;
    text-shadow: 4px 3px black;
}

#splash {
    width: 100%;
    text-align: center;
    color: yellow;
    font-size: 35px;
    font-weight: bold;
    margin-top: -50px;
}

#weenie {
    position: absolute;
    height: 200px;
    left: 67vw;
    top: 150px;
    z-index: -1;
}

#version {
    position: absolute;
    color: white;
    font-size: 15px;
    left: 145px;
    padding-top: 5px;
}