html, body {
  height: 100%;
}

body {
  width: 100%;
}

.container {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  height: 100%;
  width: 100%;
}

.header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 116px;
  padding-bottom: 58px;
  background: linear-gradient(180deg, #EAF6A6 6.82%, #FFF 100%);
}
.header .logo-title {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header .logo-title .logo {
  width: 127px;
  height: 127px;
}
.header .logo-title .title {
  font-size: 48px;
}
.header .header-description {
  font-size: 24px;
  text-align: center;
}
.header .header-add-botton {
  font-size: 24px;
  color: #FFFFFF;
  background-color: #BF9602;
  border-radius: 32px;
  padding: 20px 32px;
  margin-top: 20px;
}

.main {
  padding: 0 24px 24px 24px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 48px;
}
.main .card {
  max-width: 1085px;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.main .card .card-image-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 16px;
}
.main .card .card-image-container .card-image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.main .card .card-text-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
.main .card .card-text-container .card-title {
  font-size: 24px;
  padding: 8px 24px;
  border-radius: 8px;
  background: #73A7CF;
  color: #FFFFFF;
}
.main .card .card-text-container .card-subtitle {
  margin-top: 12px;
}
.main .card .card-text-container .card-text {
  color: #000000;
  margin: 12px 8px;
  font-size: 18px;
}
.main .card .card-text-container .card-text .card-description {
  margin-left: 24px;
}
.main .card .card-text-container .card-memo {
  margin-top: 24px;
}

.footer {
  margin: 16px 24px;
  padding-top: 16px;
  padding-bottom: 24px;
  border-top: 2px solid #0F488A;
}
.footer .footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  flex-wrap: wrap;
  row-gap: 8px;
}
.footer .footer-nav .footer-nav-item {
  padding-right: 8px;
  padding-left: 8px;
  color: #4b4b4b;
  border-right: #0F488A 1px solid;
}
.footer .footer-nav .footer-nav-item:last-child {
  border-right: none;
}
.footer .footer-nav .footer-nav-item img {
  width: 14px;
  height: 14px;
}
.footer .footer-nav .img-center {
  height: 100%;
  display: flex;
  align-items: center;
}
.footer .footer-notice {
  margin-top: 8px;
  margin-left: 8px;
  font-size: 12px;
}

@media screen and (max-width: 450px) {
  .header {
    padding-top: 48px;
    padding-bottom: 36px;
  }
  .header .logo-title .logo {
    width: 60px;
    height: 60px;
  }
  .header .logo-title .title {
    font-size: 32px;
  }
  .header .header-description {
    font-size: 18px;
    text-align: center;
  }
  .header .header-add-botton {
    font-size: 18px;
    padding: 14px 28px;
  }
  .main {
    padding: 0 16px 0px 16px;
    row-gap: 24px;
  }
  .main .card {
    flex-direction: column;
    row-gap: 8px;
  }
  .main .card .card-image-container {
    width: 100%;
  }
  .main .card .card-text-container {
    width: 100%;
  }
  .main .card .card-text-container .card-title {
    font-size: 18px;
    width: 100%;
    text-align: center;
  }
  .main .card .card-text-container .card-subtitle {
    margin-top: 0px;
  }
  .main .card .card-text-container .card-text {
    font-size: 14px;
  }
  .footer {
    margin-top: 12px;
    font-size: 14px;
  }
  .footer .footer-notice {
    margin-top: 8px;
    margin-left: 8px;
    font-size: 10px;
  }
}/*# sourceMappingURL=praise-bot.css.map */