* {
  margin: 0;
  padding: 0;
}

body {
  height: 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-image: radial-gradient(circle at center, rgb(0, 55, 97, .64), rgb(0, 55, 97));
  overflow: auto;
}

:root {
  --bu: rgb(0, 55, 97);
  --w: #FFFFFF;
  --art: #679873;
}

.break {
  height: 16px;
  background-color: var(--bu);
}

.ball {
  border-radius: 50%;
  background-color: var(--bu);
  height: 160px;
  width: 160px;
  position: absolute;
  left: 43%;
  transform: translateY(-136px);
  transition: .6s ease-in-out;
}

.ball img {
  height: 300px;
  width: 400px;
  position: absolute;
  left: -73%;
  top: -48%;
}

.small-div {
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, rgb(0, 55, 97), white, rgb(0, 55, 97));
}

.head {
  display: flex;
  height: 700px;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.h1 {
  animation-name: floating;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.text {
  font-size: 8vw;
  color: var(--w);
  text-shadow:
   0 0 6px #FFFFFF,
   0 0 16px #FFFFFF,
   0 0 32px #FFFFFF,
   0 0 64px #FFFFFF,
   0 0 82px #FFFFFF,
   0 0 102px #FFFFFF,
   0 0 151px #FFFFFF;
   font-family: 'overpass', sans-serif;
}

/* content */
.body {
  background-color: white;
  margin: 0;
  padding: 0;
  padding-top: 40px;
}

.header {
  font-size: 3em;
  color: var(--art);
  padding-left: 6%;
  padding-top: 0px;
  padding-bottom: 10px;
  font-family: 'overpass', sans-serif;
}

.heads {
  font-size: 3em;
  color: var(--art);
  padding-left: 6%;
  padding-top: 40px;
  padding-bottom: 10px;
  font-family: 'overpass', sans-serif;
}

.content {
  padding-left: 6%;
  padding-right: 6%;
  letter-spacing: 1px;
  font-family: 'catamaran', sans-serif;
}

.box {
  margin-left: 6%;
  margin-right: 6%;
  margin-top: 32px;
  text-align: center;
  font-family: 'catamaran', sans-serif;
}

table {
  box-shadow: 2px 2px 12px darkgrey;
  border-collapse: collapse;
  width: 84vw;
  height: 60vh;
  table-layout: auto;
}

td, tr, th {
  border: 1px solid black;
  padding: 10px;
}

th {
  color: var(--art);
  font-size: 1.4em;
}

td > a {
  text-decoration: none;
  color: var(--bu);
}

td > a:hover {
  text-decoration: underline;
}

.pad {
  padding-top: 32px;
}

.pad a {
  color: var(--art);
}

.pad a:hover {
  text-decoration: none;
}

.filler {
  height: 20px;
  background-color: white;
}

/*back to top*/
.backtotop {
  display: block;
  height: 40px;
  text-align: right;
  padding-right: 20px;
  background-color: white;
  padding-bottom: 12px;
}

.btt {
  background-color: var(--bu);
  color: white;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  font-size: 26px;
}

.btt:hover {
  background-color: white;
  color: var(--bu);
}


@keyframes floating {
    0% {
      transform: translate(0,  0px);
       }
    50%
      {
        transform: translate(0, 32px);
      }
    100% {
      transform: translate(0, -0px);
      }
}

@media (max-width: 800px) {
  .ball {
    left: 38%;
  }
}

@media (max-width: 500px) {
  .ball {
    left: 34%;
  }
}

@media (max-width: 860px) {
  th {
    font-size: 1em;
  }
  td {
    font-size: .8em;
  }
}
