html {
  width: 1080px;
  height: 1920px;
  overflow: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-family: "pretendard", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #fff;
}

a {
  text-decoration: none;
}

ul, ol, li {
  list-style: none;
}

body {
  width: 100%;
  height: 100%;
  background-color: #272727;
  overflow: hidden;
}

@keyframes fadeIn {
  0% {
    opacity: 0.29;
    margin-bottom: -278px;
  }
  50% {
    margin-bottom: 5px;
    opacity: 1;
  }
  100% {
    margin-bottom: 0px;
    opacity: 1;
  }
}
@keyframes fadeInText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
}
.wrap div {
  width: 100%;
  text-align: center;
}
.wrap div.text_box {
  width: 230px;
  height: 80px;
  margin-bottom: 218px;
  animation: fadeInText 2.5s ease-in-out;
  position: fixed;
  top: 310px;
}
.wrap div.text_box span {
  font-size: 32px;
  color: #fff;
}
.wrap div.logo_box {
  margin-bottom: -80px;
}
.wrap div.img_box {
  animation: fadeIn 2.5s ease;
}
.wrap div.img_box img {
  height: 100%;
}