@font-face {
  font-family: "Mandalore";
  src: url("./font/mandalore/mandalorerough.ttf");
}

:root {
  --goblin-green: rgb(132, 196, 126);
  --gray-text: rgb(142, 142, 142);
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100vh;
  overflow: hidden;

  margin: 0;
  padding: 0;
  overflow-x: hidden;

  font-family: "Mandalore";
}

img[alt="www.000webhost.com"] {
  width: 0;
  height: 0;
  display: none;
}

.bg {
  width: 100%;
  height: 100vh;

  z-index: -1;
  position: absolute;

  filter: grayscale(0.2);
}

.container {
  width: 100%;
  height: 100vh;
  position: relative;
}

.bg-main-img {
  width: 100%;
  height: 100vh;
}

.down-arrow {
  color: rgba(255, 255, 255, 0.8);
  position: fixed;
  bottom: 8px;

  left: calc((100% - 48px) / 2);

  width: 48px;
  font-size: 24px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50%;

  animation: arrowAnimation 4.5s ease-in-out infinite;
}

@keyframes arrowAnimation {
  25% {
    transform: translateY(8px);
  }

  50% {
    transform: translateY(0px);
  }

  75% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0px);
  }
}

.music-container {
  color: white;

  min-width: 48px;
  height: 48px;
  z-index: 2;
  display: flex;

  border-radius: 8px;

  position: fixed;
  right: 16px;
  bottom: 16px;
}

.music-btn {
  flex: 1;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;

  transition: 250ms;
}

.music-btn:hover {
  transform: scale(1.2);
}

.play-btn {
  display: none;
}

.music-buttons {
  width: 48px;
  height: 48px;

  /* background-color: rgba(0, 0, 0, 0.8); */
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section {
  width: 100%;
  height: 100vh;
  position: relative;

  color: white;

  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.section-img-div {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;

  z-index: -1;
}

.section-img {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
}

.section-lyric-area {
  width: 256px;
  margin-right: 8%;
  font-size: 24px;
  text-align: right;
  min-height: 256px;
  border-radius: 8px;
  padding: 4px;
  padding-right: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  line-height: 32px;

  background-color: rgba(0, 0, 0, 0.8);
}

.clips {
  width: 100%;
  min-height: 100vh;

  background-color: #131313;

  color: #6441a5;
}

.clips-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

.title {
  text-align: center;
  font-size: 48px;
  padding-top: 24px;
}

.clip {
  width: 30%;
  height: 40vh;
  border-radius: 10px;
  text-align: center;
  padding: 12px;
  z-index: 3;

  margin: 24px;
  overflow: hidden;
  text-decoration: none;
}

.clip-title {
  font-size: 24px;
  line-height: normal;
  filter: brightness(2);
}

.clip-title:hover {
  text-decoration: none;
}

.clip-text-div {
  width: 100%;
  min-height: 256px;
  margin-top: 10px;
  color: white;
  text-decoration: none;
  word-wrap: break-word;

  font-size: 20px;
  line-height: 32px;
}

.hover {
  width: 30%;
  height: 40vh;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 10px;
  position: absolute;

  display: none;
  z-index: 0;

  opacity: 0;

  transition: 500ms;
}

.modal {
  width: 100%;
  height: 100vh;

  position: fixed;
  top: 0;
  background-color: rgba(132, 196, 126, 0.3);

  z-index: 4;

  display: flex; /* flex */
  justify-content: center;
  align-items: center;
}

.modal-container {
  width: 40%;
  height: 40vh;
  background-color: rgba(255, 255, 255, 0.9);

  border-radius: 10px;

  text-align: center;
  position: relative;
}

.modal-text {
  margin-top: 48px;
}

.modal-top-text {
  font-size: 36px;
  color: var(--goblin-green);
}

.modal-bottom-text {
  font-size: 24px;
  margin-top: 4px;
  color: var(--gray-text);
}

.modal-buttons {
  display: flex;
  justify-content: flex-end;
  margin-right: 20%;
  margin-top: 128px;
}

.modal-btn {
  width: 96px;
  height: 40px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 10px;

  cursor: pointer;

  transition: 250ms;
}

.modal-btn:first-child {
  margin-right: 10px;
}

.refuse-modal-btn {
  background-color: red;
  color: white;
}

.accept-modal-btn {
  background-color: var(--goblin-green);
}

.modal-btn:hover {
  transform: scale(1.1);
}

.others-div {
  width: 100%;
  background-color: #131313;
  padding: 10px 0;
  color: #fff;

  z-index: 5;
}

.others-div-text {
  text-align: center;
  font-size: 48px;
  color: var(--goblin-green);
  padding-top: 24px;
}

.others-divs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.other {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background-color: rgba(132, 196, 126, 0.1);
  border-radius: 10px;
  margin: 24px;

  transition: 250ms;
}

.others-text span {
  color: #6441a5;
  filter: brightness(2);
  font-size: 20px;
  margin-left: 4px;

  transition: 500ms;
}

.others-link {
  margin-top: 8px;
  color: var(--gray-text);

  transition: 500ms;
}

.other:hover {
  background-color: var(--goblin-green);
}

.other:hover .others-text span {
  color: black;
}

.others-link:hover {
  color: #fff;
}

.music-control-area {
  width: 128px;
  height: 48px;
  padding: 0 4px;
  background-color: rgba(255, 255, 255, 0.2);
  /* background-color: rgba(0, 0, 0, 0.8); */
  margin-left: 8px;

  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.music-duration-div {
  width: 128px;
  height: 5px;
  background-color: #000;
  border-radius: 2px;
  cursor: pointer;

  position: relative;
  transition: 250ms;
}

.music-current-time-div {
  width: 0;
  height: 5px;
  background-color: var(--goblin-green);
  border-radius: 2px;

  transition: 250ms;
  z-index: 2;
}

.music-hover {
  height: 5px;
  border-radius: 2px;
  background-color: var(--goblin-green);
  filter: brightness(1.3);
  opacity: 0.5;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;

  transition: 250ms;
}

.clip-link {
  color: var(--goblin-green);
  text-decoration: none;
}

.clip-link:hover {
  border-bottom: 1px solid;
}
