html {
  height: 100%;
}

body {
  min-height: 100%;
  background: #00b4e6 linear-gradient(#00b4e6 50%, rgb(165.9, 227.6, 244.7)) bottom center;
  background-attachment: fixed;
}
body div.navigation-boxes {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 30px;
}
body div.navigation-boxes a.box {
  display: block;
  width: 250px;
  color: #edf8fb;
  text-decoration: none;
  border: 1px solid rgba(237, 248, 251, 0.3);
  padding: 1em;
  border-radius: 1em;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body div.navigation-boxes a.box:hover {
  border: 1px solid #edf8fb;
}
body div.navigation-boxes a.box h3 {
  font-size: 2em;
  font-weight: 600;
}
body div.navigation-boxes a.countdown {
  background-color: #00a2cf;
}
@media (min-width: 500px) {
  body div.navigation-boxes a.countdown {
    width: 80vw;
    max-width: 700px;
  }
}
body div.navigation-boxes a.countdown h3 span {
  white-space: nowrap;
}
body div.navigation-boxes a.countdown p {
  text-decoration: underline;
}
body p.more {
  text-align: center;
  margin: 1em 0 2em 0;
}
body p.more a {
  color: #edf8fb;
}
body .announcement {
  display: block;
  margin: 2em auto;
  text-align: center;
}
@keyframes circ1 {
  0% {
    left: 200px;
    top: 100px;
  }
  100% {
    left: 242px;
    top: 32px;
  }
}
@keyframes circ2 {
  0% {
    left: 200px;
    top: 100px;
  }
  100% {
    left: 57px;
    top: 0px;
  }
}
@keyframes circ3 {
  0% {
    left: 200px;
    top: 100px;
  }
  100% {
    left: 69px;
    top: 141px;
  }
}
@keyframes circ4 {
  0% {
    left: 200px;
    top: 100px;
  }
  100% {
    left: 3px;
    top: 140px;
  }
}
@keyframes circ5 {
  0% {
    left: 200px;
    top: 100px;
  }
  100% {
    left: 178px;
    top: 116px;
  }
}
@keyframes circ6 {
  0% {
    left: 200px;
    top: 100px;
  }
  100% {
    left: 312px;
    top: 120px;
  }
}
body .animlogo {
  display: block;
  margin: 2em auto;
  position: relative;
  height: 50%;
  min-height: 20vh;
  width: 100%;
  max-width: 90vw;
  background-image: url("../images/MCA-logo-wt.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
}
body .animlogo .circle {
  display: none;
}
@media (min-width: 576px) {
  body .animlogo {
    height: 350px;
    min-height: 30vh;
    width: 500px;
    background-image: none;
  }
  body .animlogo .circle {
    display: block;
    width: 100px;
    height: 100px;
    left: 200px;
    top: 100px;
    position: absolute;
    border: 5px solid rgba(255, 255, 255, 0.8) !important;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 100em;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    transition-property: all;
  }
  body .animlogo:hover .circle {
    background-color: rgba(255, 255, 255, 0.5);
  }
  body .animlogo .c1, body .animlogo .c2, body .animlogo .c3, body .animlogo .c4, body .animlogo .c5, body .animlogo .c6 {
    transition: left 2s, top 2s, transform 2s;
  }
  body .animlogo .c1 {
    width: 185px;
    height: 185px;
    left: 242px;
    top: 32px;
    animation: circ1 2s;
    -moz-animation: circ1 2s;
    -webkit-animation: circ1 2s;
  }
  body .animlogo .c2 {
    width: 230px;
    height: 230px;
    left: 57px;
    top: 0;
    animation: circ2 2s;
    -moz-animation: circ2 2s;
    -webkit-animation: circ2 2s;
  }
  body .animlogo .c3 {
    width: 185px;
    height: 185px;
    left: 69px;
    top: 141px;
    animation: circ3 2s;
    -moz-animation: circ3 2s;
    -webkit-animation: circ3 2s;
  }
  body .animlogo .c4 {
    width: 143px;
    height: 143px;
    left: 3px;
    top: 140px;
    animation: circ4 2s;
    -moz-animation: circ4 2s;
    -webkit-animation: circ4 2s;
  }
  body .animlogo .c5 {
    width: 230px;
    height: 230px;
    left: 178px;
    top: 116px;
    animation: circ5 2s;
    -moz-animation: circ5 2s;
    -webkit-animation: circ5 2s;
  }
  body .animlogo .c6 {
    width: 185px;
    height: 185px;
    left: 312px;
    top: 120px;
    animation: circ6 2s;
    -moz-animation: circ6 2s;
    -webkit-animation: circ6 2s;
  }
}
