#content {
  min-height: calc(100vh - 85px);
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: none;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

h2 {
  margin: 20px 0 40px 0;
  font-weight: normal;
}

.search-area {
  display: flex;
  padding: 30px 40px;
  background: #fefefe;
  border-radius: 10px;
}

.search-area input {
  width: calc(100% - 100px);
}

.search-area button {
  margin-left: auto;
  font-weight: bold;
}

.search-area input:focus,
.search-area input:focus-visible {
  outline-color: #ddd;
}

#result-area {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid lightgray;
}

#result-area p:first-child {
  margin: 0 10px;
  font-size: 24px;
}

#result-area #title {
  font-weight: bold;
}

#dictionary,
#example {
  margin: 20px 0;
  padding: 20px 15px;
  background: #fff;
}

#dictionary .thumb {
  margin-bottom: 40px;
  text-align: center;
}

#dictionary .desc {
  margin: 20px 0 0 ;
  padding-top: 20px;
  border-top: 4px solid #f5f5f5;
}

#dictionary .date {
  margin-top: 20px;
}

#example .list-title {
  font-size: 18px;
  font-weight: bold;
}

#example li {
  list-style: none;
  margin: 20px 0;
  padding: 20px 0 10px 20px;
  border-top: 4px solid #f5f5f5;
}

#example pre {
  padding: 15px;
  margin-bottom: 0;
}

#example .desc {
  margin: 10px 0;
}

.date {
  margin: 0;
  text-align: right;
  font-size: 14px;
}

.text-hide {
  overflow: hidden;
  border: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  display: inline-block;
}

.link {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 25px auto 0;
  padding: 30px;
  background: seagreen;
  border-radius: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

/* TABLET */
@media (max-width: 921px) {
  #content {
    min-height: calc(100vh - 95px);
  }
  .custom-page {
    padding-top: 30px;
  }
}

/* MOBILE */
@media (max-width: 544px) {
  #content {
    min-height: calc(100vh - 125px);
  }
  .search-area {
    padding: 15px 20px;
  }
  .link {
    font-size: 18px;
    padding: 20px;
  }
  #example li {
    padding-left: 8px;
  }
}
