@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Outfit:wght@400;800&family=Poppins:wght@400;500;600;800&display=swap");
@import url("https://fonts.googleapis.com/css?family=Bungee");
:root {
  --primary: #1694d4;
  --secondary: #01303a;
  --light: #f5f5f5;
  --dark: #424242;
  font-family: "Poppins";
}
html,
body {
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

main {
  display: grid;
  padding: 0 5px;
  grid-template-columns: repeat(2, 1fr);
}

#title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-color {
  color: #2aa3d9;
}

#title h1 {
  text-align: center;
  font-family: "Bungee";
  font-weight: lighter;
  color: var(--secondary);
  font-size: 50px;
  line-height: 1.5;
  width: 100%;
}
main #server span {
  background: #13fc13;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  display: inline-block;
  vertical-align: middle;
}

#server {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

section {
  width: 250px;
  height: 250px;
}
section aside {
  background: var(--primary);
  height: 200px;
  width: 15px;
  position: absolute;
  z-index: -1;
}
section aside:nth-child(1) {
  left: 5px;
  top: 20px;
}
section aside:nth-child(2) {
  right: 5px;
  top: 20px;
}
section article {
  width: 100%;
  height: 50px;
  background: #202730;
  margin: 10px auto;
  position: relative;
  box-shadow: 10px 0px 15px #2d3540, -10px 0px 15px #2d3540;
}
section article span {
  width: 7px;
  height: 7px;
  border-radius: 100%;
  display: block;
  position: relative;
  top: 10px;
  left: 10px;
  margin: 0 0 15px 0;
}
section article span:nth-child(1) {
  background: #28cb40;
  animation: blinker 0.7s linear infinite;
}
section article span:nth-child(2) {
  background: #c99a31;
  animation: blinker 1.3s linear infinite;
}
section article span:nth-child(3) {
  background: transparent;
  border: 1px solid #fff;
  position: absolute;
  top: 20px;
  right: 10px;
  left: inherit;
}
section article ul li {
  width: 10px;
  height: 30px;
  background: #818993;
  position: absolute;
  display: inline-block;
  z-index: 1;
  top: 10px;
}
section article ul li:nth-child(1) {
  left: 30px;
  animation: fade 2s infinite alternate backwards;
}
section article ul li:nth-child(2) {
  left: 50px;
  animation: fade 1.8s 0.2s infinite alternate backwards;
}
section article ul li:nth-child(3) {
  left: 70px;
  animation: fade 1.6s 0.4s infinite alternate backwards;
}
section article ul li:nth-child(4) {
  left: 90px;
  animation: fade 1.4s 0.6s infinite alternate backwards;
}
section article ul li:nth-child(5) {
  left: 110px;
  animation: fade 1.2s 0.8s infinite alternate backwards;
}
section article ul li:nth-child(6) {
  left: 130px;
  animation: fade 1s 1s infinite alternate backwards;
}
section article ul li:nth-child(7) {
  left: 150px;
  animation: fade 0.8s 1.2s infinite alternate backwards;
}
section article ul li:nth-child(8) {
  left: 170px;
  animation: fade 0.6s 1.4s infinite alternate backwards;
}
section article ul li:nth-child(9) {
  width: 30px;
  background: #32a3ef;
  color: #202730;
  font-family: "Poppins";
  left: 190px;
  line-height: 27px;
  text-align: center;
  animation: pulse 1.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
@keyframes pulse {
  from {
    background-color: #32a3ef;
    box-shadow: 0 0 9px #333;
  }
  50% {
    background-color: #59b6f2;
    box-shadow: 0 0 15px #047ac7;
  }
  to {
    background-color: #32a3ef;
    box-shadow: 0 0 9px #333;
  }
}
@keyframes fade {
  from {
    filter: alpha(opacity=0);
    opacity: 0;
  }
  to {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
@-webkit-keyframes blinker {
  50% {
    opacity: 0;
  }
}
@-webkit-keyframes pulse {
  from {
    background-color: #32a3ef;
    box-shadow: 0 0 9px #333;
  }
  50% {
    background-color: #59b6f2;
    box-shadow: 0 0 15px #047ac7;
  }
  to {
    background-color: #32a3ef;
    box-shadow: 0 0 9px #333;
  }
}
@-webkit-keyframes fade {
  from {
    filter: alpha(opacity=0);
    opacity: 0;
  }
  to {
    filter: alpha(opacity=100);
    opacity: 1;
  }
}

h1 {
  margin: 0;
  color: var(--secondary);
}

.contactus_link {
  border-radius: 30px;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 8px;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  margin-right: 10px;
}

.contactus_link:hover {
  color: var(--light);
  background: var(--primary);
  box-shadow: 0 0 10px #047ac7;
}

.navbar {
  /* width: 100%; */
  background: #fff;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  padding: 10px;
}

.navbar a {
  text-decoration: none;
}

.container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.brand-logo img {
  width: 12vw;
}

.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  white-space: nowrap;
}

#footer .container {
  padding: 0 10px;
}

#footer .social-links {
  align-items: center;
  margin: auto;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  height: -moz-min-content;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0;
  position: relative;
  width: -moz-min-content;
  width: min-content;
}
#footer .social-links a svg {
  margin: 20px 10px;
}

#footer .footer-bottom {
  text-align: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  height: -moz-min-content;
  height: min-content;
  justify-content: space-between;
  overflow: visible;
  /* padding: 40px 0 20px; */
  position: relative;
  width: 100%;
  border-top: 1px solid rgb(206, 206, 206);
}

@media (max-width: 1024px) {
  main {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
  }
  #title h1 {
    font-size: 40px;
  }
  html,
  body {
    overflow: auto;
  }
  main {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 992px) {
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 576px) {
  #title h1 {
    font-size: 30px;
  }
}
