body {
  background-color: #0d1821;
  width: auto;
  height: auto;
  overflow: hidden;
}

.load_content {
  height: 100vh;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  margin-left: 25%;
}

p {
  color: #4adbc8;
  font-family: Pokemon DS;
  font-size: 1.2rem;
}

img {
  width: 150px;
}

.line {
  height: 40vh;
  width: 1px;
  border-left: 1px solid #4adbc8;
  margin: 0 5vw 0 5vw;
}

#text {
  white-space: pre-line;
}

button {
  display: none;
  position: relative;
  left: 40%;
  bottom: 15vh;
  padding: 2vh 3vw;
  background-color: transparent;
  border: 2px solid #4adbc8;
  border-radius: 20px;
  color: #4adbc8;
  font-family: Pokemon DS;
  font-size: 1.2rem;
}

button:hover {
  border: 2px solid transparent;
  background-color: #4adbc8;
  color: #0d1821;
  cursor: pointer;
}

a {
  text-decoration: none;
}

@media (max-width: 1200px) {
  .load_content {
    display: flex;
    flex-direction: column;
    margin: 0;
    position: relative;
    right: 2vw;
  }

  .load_content p {
    /*display: flex;*/
    height: 100%;
    width: 100%;
    /*justify-content: center;*/
    position: relative;
    top: 10vh;
    /* left: 25vw; */
    text-align: center;
  }

  .line {
    display: none;
  }

  button {
    display: none;
    position: relative;
    left: 0;
    bottom: 25vh;
    margin: 0 auto 0 auto;
  }
}
