@import url('https://fonts.googleapis.cn/css2?family=JetBrains+Mono:wght@100;500&display=swap');

* {
  margin: 0;
  padding: 0;
}

body {
  background: #282c34;
  font-size: 2vmin;
  font-family: JetBrains Mono, monospace;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e4bb68;
}


#awd-site-footer {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    height: 30px;
    z-index: 20;
}

.copyright {
    float: left;
    vertical-align: bottom;
}

.copyright p {
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    font-family: "Quicksand", sans-serif;
    letter-spacing: 2px;
    margin-bottom: 0;
}



.string {
  display: flex;
  flex-direction: column;
  text-align: center;
  animation: move 4s infinite;
}

.greeting {
  position: relative;
  top: 8.6vmin;
  animation: white-out 5s infinite;
}

.closure::after {
  content: '';
  position: absolute;
  height: 25vmin;
  width: 40vmin;
  background: #282c34;
  transform: translate(-45vmin, -24.5vmin);
}

.closure::before {
  content: '';
  position: absolute;
  height: 25vmin;
  width: 40vmin;
  background: #282c34;
  transform: translate(-40vmin, 5vmin);
}

.en {
  color: #fa8231;
}

.es {
  color: white;
}

.de {
  color: #c678dd;
}

.it {
  color: #a9b0bd;
}

@keyframes move {
  25% {
    transform: translatey(-5.8vmin);
    opacity: 1;
  }
  50% {
    transform: translatey(-11vmin);
  }
  75% {
    transform: translatey(-16.5vmin);
  }
}

a {
    color: inherit; /* 浣跨敤褰撳墠瀛椾綋鐨勯粯璁ら鑹� */
    text-decoration: none; /* 鍘绘帀涓嬪垝绾匡紙濡傛湁闇€瑕侊級 */
}


