/* style.css */
@font-face {
  font-family: "PixelIcons";
  src: url("font/pixel_icons.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  width: 100vw;
  height: 100vh;
  background: #000829;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 63px;
  width: 66px;
  animation: flicker 3s infinite;
}

.email-container {
  text-align: center;
  color: white;
  font-family: "Pixelify Sans", sans-serif;
  font-weight: 400;
  font-size: 64px;
  margin-top: 10px;
}

.email-container a {
  color: white;
  text-decoration: none;
}

.email-container a:hover {
  text-decoration: underline;
}

.globe {
  width: 66px;
  height: 63px;
}

@keyframes flicker {
  0% {
    opacity: 1;
  }
  18% {
    opacity: 1;
  }
  19% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  96% {
    opacity: 1;
  }
  97% {
    opacity: 0;
  }
  98% {
    opacity: 1;
  }
}
.countries-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  height: 96%;
  width: 96%;
  border-radius: 100px;
  overflow: hidden;
  z-index: 2;
}

.countries {
  position: absolute;
  animation: axis-spin 5s steps(24) infinite;
}

@keyframes axis-spin {
  from {
    transform: translatex(0px);
  }
  to {
    transform: translatex(-123px);
  }
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  background-color: transparent;
  font-family: "Pixelify Sans", sans-serif;
  color: white;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

footer a {
  margin-bottom: 5px;
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer a img {
  display: inline-block;
}

footer .copyright {
  font-size: 20px;
  margin-top: 5px;
  color: white;
}

footer .mwl {
  font-size: 32px;
  margin: 10px;
  color: white;
}

.mwl img {
  vertical-align: middle;
  margin-left: 4px;
  margin-right: 4px;
}

.pixelify-sans-globemakers {
  font-family: "Pixelify Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.heart {
  font-family: "PixelIcons";
  font-size: 32px;
  color: red;
  margin: 0 4px;
}
