* {
  -webkit-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  box-sizing: border-box;
}

#logo {
  display: inline-block;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  font-family: "TikTok Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  border: 1px solid #10eb7e;
}
#logo::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  border: 2px solid transparent;
}
#logo a {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  display: block;
  height: 40px;
  padding: 2px 10px 2px 10px;
  color: #10eb7e;
  line-height: 25px;
}
#logo span {
  display: inline-block;
  vertical-align: baseline;
  font-size: 15px;
  margin-top: 5px;
}
#logo .name {
  width: 0;
  opacity: 0;
}
#logo:hover {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
#logo:hover::before {
  border: 1px solid #10eb7e;
}
#logo:hover a {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
#logo:hover .name {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  width: 41px;
  opacity: 1;
}
#logo:hover .name.last {
  width: 40px;
}

body {
  height: 100%;
  width: 100%;
  background-color: #322f3d;
  margin: 0;
}

.cosmetic-wrap {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  margin-top: -20px;
}
.page-foot {
  font-family: Quicksand, sans-serif;
  font-style: normal;
  font-weight: 400;
  background: #1c1a22;
  bottom: 0;
  color: #ffffff;
  position: fixed;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.page-foot-column {
  order: 0;
  flex: 1 1 auto;
  align-self: auto;
  padding: 0.5em;
}
.page-foot-column:nth-child(2) {
  text-align: right;
}