@import './../../css/font.css';

* {
  font-family: 'fs_sura_sans';
  margin: 0;
}

body {
  height: 100vh;
  background-color: #f2f5f9;
}

.header-box {
  background-color: #fff;
  padding: 1rem 2rem;
}

.header-box img {
  width: 90px;
}

.sub-title {
  background-color: #b7b09c;
  padding: 0.5rem 2rem;
  color: #252323;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
}

.content {
  width: calc(100vw - 4rem);
  height: calc(100vh - 178px);
  margin: 2rem auto;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 0 rgba(46, 46, 46, 0.17);
  display: flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
}

.content h3 {
  text-align: center;
  padding: 1rem 0;
  line-height: 2;
  font-size: 1.3rem;
  font-weight: 500;
  color: #4c5662;
}

@media screen and (max-width: 900px) {
  .content div {
    text-align: center;
  }
  .content img {
    width: 80%;
  }
  .content h3 {
    font-size: 1rem;
    padding-bottom: 0;
  }
}

@media screen and (max-height: 450px) {
  .content {
    height: 350px;
  }
}
