body,
html {
  height: 100%;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

@media only screen and (max-width: 768px) {
  .hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("assets/hero-background-small.jpg");
    height: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
}

@media only screen and (min-width: 768px) {
  .hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("assets/hero-background.jpg");
    height: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
}

.hero-content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&display=swap");

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

.wrapper .input {
  border: 0;
  outline: none;
  color: #8b7d77;
}

.search_wrap {
  /* width: 500px; */
  margin: 38px auto;
}

.search_wrap .search_box {
  position: relative;
  height: 60px;
}

.search_wrap .search_box .input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 18px;
}

.search_wrap .search_box .btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background: #7690da;
  z-index: 1;
  cursor: pointer;
}

.search_wrap .search_box .btn:hover {
  background: #708bd2;
}

.search_wrap .search_box .btn.btn_common .fas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
}

.search_wrap.search_wrap_box .search_box .btn {
  height: 45px;
  top: 8px;
  right: 5px;
  border-radius: 3px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search_wrap.search_wrap_box .search_box .input {
  padding-right: 145px;
}

@media only screen and (max-width: 480px) {
  .search_wrap .search_box {
    width: 340px;
  }

  .search_wrap.search_wrap_box .search_box .btn {
    width: 100px;
  }
}

@media only screen and (min-width: 480px) {
  .search_wrap .search_box {
    width: 600px;
  }

  .search_wrap.search_wrap_box .search_box .btn {
    width: 125px;
  }
}

.shadow-1:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: inherit;
  height: inherit;
  z-index: -2;
  box-sizing: border-box;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.13);
}

.shadow-1:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: inherit;
  height: inherit;
  z-index: -2;
  box-sizing: border-box;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.08);
}

.card {
  position: relative;
  height: 60px;
  background: #fcfcfc;
  margin: 20px 40px;
  transition: 0.4s all;
}

@media only screen and (min-width: 600px) {
  .card {
    width: 600px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-device-width: 800px) and (orientation: portrait) {
  .card {
    margin: 12px 10px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
}

/* Create four equal columns */
.column-1 {
  flex: 75%;
  padding: 15px 5px;
}
.column-2 {
  flex: 25%;
  text-align: center;
}

.btn-primary {
  width: 125px;
  height: 40px;
  top: 10px;
  right: 5px;
  border-radius: 3px;
  color: #fff;
  position: absolute;
  background: #7690da;
  cursor: pointer;
  border: 0;
  font-size: 16px;
}

@media only screen and (max-width: 480px) {
  .btn-primary {
    width: 90px;
    height: 35px;
    font-size: 14px;
  }

  .column-1 {
    font-size: 14px;
  }
}

.no-lyric {
  text-align: center;
  margin: 50px;
}

.loader {
  border: 5px solid #f3f3f3;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  border-top: 5px solid #555;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  margin-top: 50px;
}

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

.lyrics-text {
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 50px;
}

a {
  text-decoration: none;
}
.back-link {
  text-align: center;
  padding-top: 20px;
}
