* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  margin: 0;
}
a > img {
  border: none;
}
/*
p {
  margin: 0;
  line-height: 1.5;
  & + p {
    margin-top: 1rem;
  }
}
*/
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
body {
  background: #fff;
}
.page {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.logo {
  position: relative;
  width: 506px;
  height: 506px;
}
.logo-bg {
  background-image: url("/img/backimage.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: inherit;
  height: inherit;
  animation: logo-spin 20s infinite linear;
}
.logo-tg {
  position: absolute;
  top: 182px;
  left: 93px;
  width: 320px;
  height: 152px;
  background-image: url("/img/logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.logo-cs {
  position: absolute;
  top: 375px;
  left: 183px;
  width: 140px;
  height: 42px;
  background-image: url("/img/comingsoon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@keyframes logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
