@import url("./fonts/KintoSans-Black.ttf");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  height: 100%;
  color: #fff;
  background-color: #1D2027;
  font-family: "Kinto Sans", Verdana, Geneva, Tahoma, sans-serif;
}

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

body.swal2-height-auto {
  height: 100% !important;
}

a {
  color: #1B84F7;
  text-decoration: none;
}
a:hover {
  color: #0F6BD2;
}

.logo {
  display: flex;
  font-size: 6em;
  position: relative;
  align-items: center;
}
.logo b {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.logo .circle {
  width: 0.72em;
  height: 0.72em;
  padding: 4px;
  margin-top: 6px;
  margin-left: 4px;
  border-radius: 50%;
  border: 5px solid #fff;
  position: relative;
}
.logo #angle {
  width: auto;
  height: 0.45em;
  position: absolute;
  top: 8px;
  left: 3px;
}
.logo #marker {
  width: auto;
  height: 0.3em;
  position: absolute;
  bottom: 0;
  right: 8px;
}
.logo span {
  font-size: 0.3em;
  right: 0.2em;
  bottom: -0.6em;
  display: block;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .logo {
    zoom: 0.6;
  }
}
@media only screen and (max-width: 320px) {
  .logo {
    zoom: 0.4;
  }
}

.minecraft_server {
  gap: 1em;
  padding: 1em;
  display: flex;
  margin-top: 10em;
  text-align: center;
  border-radius: 10px;
  flex-direction: column;
  border: 1px solid #2AAFE8;
}
.minecraft_server a {
  font-weight: bold;
}
.minecraft_server span {
  gap: 0.2em;
  display: flex;
  flex-direction: column;
}
.minecraft_server b {
  font-weight: 300;
  color: #5B616D;
}
.minecraft_server em {
  margin: 0;
  display: block;
  font-weight: bold;
  font-style: normal;
}
.minecraft_server .spin {
  -webkit-animation: fa-spin 1s infinite linear;
  animation: fa-spin 1s infinite linear;
}
.minecraft_server .success,
.minecraft_server .error,
.minecraft_server .spin {
  width: auto;
  height: 20px;
}
.minecraft_server .url {
  position: relative;
}
.minecraft_server .url .copy {
  top: 0;
  right: 0;
  width: auto;
  height: 14px;
  position: absolute;
}
.minecraft_server .url:hover {
  cursor: pointer;
  background-color: #242831;
}
.minecraft_server #server_status {
  gap: 0.5em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.minecraft_server #server_status:has(> .success) {
  color: #56f000;
}
.minecraft_server #server_status:has(> .error) {
  color: #ff3838;
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}/*# sourceMappingURL=style.css.map */