html,
body {
  padding: 0;
  margin: 0;
}
@font-face {
  font-family: "Nanum Gothic";
  font-style: normal;
  font-weight: 400;
  src: url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Regular.eot);
  src: url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Regular.eot?#iefix)
      format("embedded-opentype"),
    url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Regular.woff2)
      format("woff2"),
    url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Regular.woff)
      format("woff"),
    url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Regular.ttf)
      format("truetype");
}
@font-face {
  font-family: "Nanum Gothic";
  font-style: normal;
  font-weight: 700;
  src: url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Bold.eot);
  src: url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Bold.eot?#iefix)
      format("embedded-opentype"),
    url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Bold.woff2)
      format("woff2"),
    url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Bold.woff)
      format("woff"),
    url(//fonts.gstatic.com/ea/nanumgothic/v5/NanumGothic-Bold.ttf)
      format("truetype");
}
body {
  font-family: "Nanum Gothic", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  background-color: #f1f1f1;
}
.wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  align-items: center;
}
.image {
  display: flex;
  position: relative;
  width: 100%;
  height: 330px;
}
.image img {
  width: 100%;
  object-fit: cover;
  object-position: bottom;
}
.image div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
}
.image h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}
.image p {
  font-size: 20px;
  margin-top: 8px;
  margin-bottom: 48px;
}
#contentBlock {
  width: 90%;
  margin: 0 auto;
}
#contentBlock h3 {
  color: #0075bd;
  padding-bottom: 0;
  margin-bottom: 0;
}
#contentBlock h3:before {
  content: "•";
}
#contentBlock p {
  margin-top: 4px;
  padding-left: 18px;
  color: #242424;
  word-break: keep-all;
}
a {
  width: 90%;
  text-decoration: none;
  text-align: center;
  display: block;
  border-radius: 10px;
  padding: 18px 0;
  font-size: 22px;
  font-weight: 600;
  color: white;
  background-color: #0075bd;
  transition: 0.2s;
}
a:hover {
  background-color: #005285;
}
footer {
  width: 100%;
  text-align: center;
  background-color: #ccc;
  color: #777;
  padding: 36px 0;
}

@media (min-width: 600px) {
  .image {
    height: 450px;
  }
}
