@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('./fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('./fonts/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('./fonts/Roboto-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('./fonts/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.downloadBox {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.headerBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 1208px;
  margin: 0 auto;
  height: 60px;
  flex-shrink: 0;
}

.logo {
  width: 70px;
  height: 28px;
}

.bodyBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  width: 600px;
  margin: 0 auto;
}

.character {
  width: 208px;
  height: 144px;
  margin-bottom: 24px;
}

.title {
  font-family: Poppins;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #222222;
  margin-bottom: 8px;
  text-align: center;
}

.desc {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #222222;
  text-align: center;
}

.downloadArea {
  display: flex;
  flex-direction: row;
  margin-top: 24px;
}

.appStoreImg {
  width: 120px;
  height: 40px;
  margin-right: 16px;
  cursor: pointer;
}

.googlePlayImg {
  width: 135px;
  height: 40px;
  cursor: pointer;
}

.footer {
  width: 1208px;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
}

.commonDescribe {
  margin-top: 48px;
  margin-bottom: 24px;
  color: #757575;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  line-height: 18px;
}

@media (max-width: 480px) {
  .headerBox {
    width: 100%;
    padding: 0 24px;
    height: 56px;
    border-bottom: solid 1px #D0D0D0;
  }

  .logo {
    width: 59px;
    height: 23px;
  }

  .bodyBox {
    width: 100%;
    padding: 80px 24px 0;
  }

  .character {
    width: 208px;
    height: 144px;
    margin-bottom: 24px;
  }

  .title {
    font-size: 32px;
    line-height: 38px;
  }

  .desc {
    font-size: 16px;
    line-height: 24px;
    color: #151518;
  }

  .footer {
    width: 100%;
    padding: 0 24px;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
  }
}