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

@font-face {
  font-family: Jetbrains;
  src: local("Jetbrains"), url("./Assets/font/JetBrainsMono-Regular.woff2") format("truetype");
}
.animate__animated.animate__zoomIn {
  --animate-duration: .25s;
}

html {
  font-size: 62.5%;
  font-family: "Jetbrains", monospace;
  color: #F6F8FF;
}

body {
  width: 100vw;
  height: 100vh;
  background-color: black;
  color: #F6F8FF;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: hsl(200, 22%, 8%);
  background: linear-gradient(45deg, hsl(200, 22%, 8%) 0%, rgb(5, 2, 20) 100%);
  background: -webkit-linear-gradient(45deg, hsl(200, 22%, 8%) 0%, rgb(5, 2, 20) 100%);
}

.main {
  width: 100vw;
  height: 7vh;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}
.logo img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.playerMain {
  width: 80vw;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.musicPlayer {
  position: relative;
  width: 90%;
  height: 50%;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  background: rgba(65, 65, 65, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(65, 65, 65, 0.33);
}

.reactions {
  margin-top: 1rem;
  height: auto;
  width: 90%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}

.socialIcons {
  height: 25%;
  width: 90%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.socialIcons h2 {
  width: 100%;
  margin-left: 1rem;
}
.socialIcons a img {
  height: 3rem;
  margin-left: 1rem;
  margin-top: 0.5rem;
}

#playerInfo {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
#playerInfo h2 {
  font-size: 1.6rem;
  width: 100%;
  height: 25%;
}
#playerInfo p {
  line-height: auto;
  height: 25%;
  font-size: 1.3rem;
}

#playerButtons {
  width: auto;
  height: 25%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

#buyMeACoffee {
  width: auto;
  height: 100%;
}
#buyMeACoffee #bmac {
  height: 100%;
  width: auto;
}

#messageUs {
  height: 100%;
  width: auto;
}

#messageUsPic {
  height: 100%;
  width: auto;
}

#player {
  position: absolute;
  top: 0;
  right: 0;
  margin: 1rem;
  height: 50%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: #F6F8FF;
  align-self: center;
  line-height: 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#player #playback {
  height: auto;
  width: 35%;
}

.bottomInfo {
  height: 44vh;
  width: 100vw;
  overflow: hidden;
}
.bottomInfo h2 {
  width: 90%;
  height: 10%;
  margin: auto;
  padding: 0 1rem;
}

.onesignal-customlink-container {
  height: 100%;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider {
  width: 90%;
  height: 90%;
  padding: 0.5rem;
  gap: 1rem;
  margin: auto;
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  overflow-x: scroll;
  overflow-y: hidden;
  display: grid;
  grid-auto-flow: column;
}

.slider::-webkit-scrollbar {
  display: none;
}

#showBox {
  background: rgba(65, 65, 65, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(65, 65, 65, 0.33);
  border-radius: 1rem;
  overflow: hidden;
  padding: 1rem;
  height: 100%;
  width: 40rem;
  display: block;
}
#showBox img {
  height: 35%;
  width: 100%;
  border-radius: 0.3rem;
  background-color: #87CEEB;
}
#showBox h1 {
  font-weight: bold;
  font-size: 2rem;
  height: auto;
  width: 100%;
  margin-top: 0.2rem;
}
#showBox p {
  text-align: justify;
  line-height: 1.6rem;
  font-size: 1.4rem;
  height: auto;
  width: 100%;
  margin-top: 1rem;
}

#showTime {
  font-size: 1rem;
  padding: 0%;
  width: 100%;
  color: #C5E773;
  margin-top: 0.3rem;
}

.btn {
  height: 100%;
  max-width: 250px;
  color: rgb(0, 0, 0);
  text-decoration: none;
}
.btn i {
  padding-right: 0.3em;
}

.modal-window {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.25);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  font-size: 1.6rem;
}
.modal-window:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal-window > div {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  background: white;
  color: #101619;
}
.modal-window h1 {
  font-size: 150%;
  margin: 0 0 15px;
}

.modal-close {
  color: #aaa;
  line-height: 50px;
  font-size: 80%;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 70px;
  text-decoration: none;
}
.modal-close:hover {
  color: #101619;
}

a {
  color: inherit;
  text-decoration: none;
}

.modal-window > div {
  border-radius: 1rem;
}

.modal-window div:not(:last-of-type) {
  margin-bottom: 15px;
}

small {
  color: lightgray;
}

#myForm {
  width: 100%;
}
#myForm #name {
  height: 3rem;
  width: 100%;
  border: solid;
  border-color: lightgray;
  border-width: 0.2rem;
  border-radius: 0.5rem;
}
#myForm #textarea {
  height: 8rem;
  width: 100%;
  border: solid;
  border-color: lightgray;
  border-width: 0.2rem;
  border-radius: 0.5rem;
}

#devInfo {
  height: 6vh;
  width: 100vw;
  text-align: center;
  color: lightgray;
}
#devInfo p {
  font-size: 1rem;
}

.button {
  background-color: #4CAF50;
  /* Green */
  border: none;
  height: 3rem;
  width: auto;
  color: white;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  background-color: #f44336;
  color: white;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.button2 {
  background-color: #F6F8FF;
  color: rgb(249, 182, 57);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fa-heart {
  font-size: 1.4rem;
}

.fa-face-sad-tear {
  font-size: 1.4rem;
  background-color: #000000;
  border-radius: 50%;
}

.fa-face-grin {
  background-color: #000000;
  border-radius: 50%;
}

.counterStat {
  color: rgb(255, 255, 255);
  font-family: "Jetbrains", monospace;
  font-weight: 800;
  font-size: 1.4rem;
}

.counterStat2 {
  color: rgb(24, 24, 24);
  font-family: "Jetbrains", monospace;
  font-weight: 800;
  font-size: 1.4rem;
}

@keyframes heartBeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
@keyframes gradientChange {
  0% {
    background: linear-gradient(45deg, #39ff14, #87CEEB, #ffeb3b);
    background-size: 400% 400%;
    background-position: 100% 0%;
  }
  25% {
    background: linear-gradient(45deg, #ffeb3b, #39ff14, #87CEEB);
    background-position: 0% 0%;
  }
  50% {
    background: linear-gradient(45deg, #87CEEB, #ffeb3b, #39ff14);
    background-position: 0% 100%;
  }
  75% {
    background: linear-gradient(45deg, #39ff14, #87CEEB, #ffeb3b);
    background-position: 100% 100%;
  }
  100% {
    background: linear-gradient(45deg, #ffeb3b, #39ff14, #87CEEB);
    background-position: 100% 0%;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.button.clicked {
  animation: heartBeat 0.5s ease-out, fadeOut 0.5s ease-out, gradientChange 0.5s ease-in-out;
}

@media screen and (min-width: 200px) and (max-width: 390px) {
  .playerMain {
    width: 100vw;
  }
  .bottomInfo {
    width: 100vw;
  }
  #showBox {
    width: 20rem;
  }
  #showBox img {
    height: 35%;
  }
  #showBox h1 {
    font-weight: bold;
    font-size: 1.6rem;
  }
  #showBox p {
    font-size: 1rem;
  }
  #showTime {
    font-size: 1rem;
    padding: 0%;
    height: auto;
  }
}
@media screen and (min-width: 390px) and (max-width: 1080px) {
  .playerMain {
    width: 100vw;
  }
  .bottomInfo {
    width: 100vw;
  }
  #showBox {
    width: 20rem;
  }
  #showBox img {
    height: 35%;
  }
  #showBox h1 {
    font-weight: bold;
    font-size: 1.6rem;
  }
  #showBox p {
    font-size: 1rem;
  }
  #showTime {
    font-size: 1rem;
    padding: 0%;
    height: auto;
  }
}
@media screen and (min-width: 1080px) and (max-width: 1440px) {
  .playerMain {
    width: 80vw;
  }
  .bottomInfo {
    width: 100vw;
  }
  #showBox {
    width: 25rem;
  }
  #showBox img {
    height: 40%;
  }
  #showBox h1 {
    font-weight: bold;
    font-size: 1rem;
  }
  #showBox p {
    font-size: 0.8rem;
  }
  #showTime {
    font-size: 1.4rem;
    padding: 0%;
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */