@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;
}

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

a.logo {
  display: flex;
  font-size: 6em;
  position: relative;
  align-items: center;
  color: #fff;
  transition: opacity 0.15s ease-in-out;
}
a.logo:hover {
  opacity: 0.7;
  cursor: pointer;
  color: #fff;
}
a.logo b {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
a.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;
}
a.logo #angle {
  width: auto;
  height: 0.45em;
  position: absolute;
  top: 8px;
  left: 3px;
}
a.logo #marker {
  width: auto;
  height: 0.3em;
  position: absolute;
  bottom: 0;
  right: 8px;
}
a.logo span {
  font-size: 0.3em;
  right: 0.2em;
  bottom: -0.6em;
  display: block;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  a.logo {
    zoom: 0.6;
  }
}
@media only screen and (max-width: 320px) {
  a.logo {
    zoom: 0.4;
  }
}