body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: Arial, sans-serif;
  background-color: #0f0f0f;
  color: #fff;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
  #hide-on-mobile {
    background-color: transparent;
  }
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

/* .fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 14px;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
} */

.fa-caret-right:before {
  content: "\f0da"
}

.archon-logo {
  margin-top: -70px;
}

.header-images {
  background: rgb(0 0 0 / 40%);
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  padding: 45px 0px 0px 0px;
  box-sizing: border-box;
  border-radius: 10px;
  text-align: center;

  border-radius: 15px;
  align-items: center;
  gap: 5px;

  margin-top: 25px;
  margin-bottom: 10px;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/lunatic-pixel-art.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(35px);
  z-index: -100;
}

.bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  pointer-events: none;
}

.music-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.music-cover img {
  width: 200px;
  height: 200px;
  border-radius: 10px;
}

.music-details {
  text-align: center;
  margin-top: 5px;
  max-width: 700px;
}

.audio-controls {
  width: 100%;
  max-width: 300px;
}

.inner1 {
  display: inline-block;
}

.streaming-links {
  max-width: 700px;
}

.hyperlink-streaming {
  display: block;
  padding: 0px;
  box-sizing: border-box;
  text-align: left;
  border-radius: 10px;
  margin: 10px 0px 10px 0px;
  background: rgb(255 255 255 / 17%);
  color: white;
  font-size: 18px;
  /* border: 2px solid rgb(255 255 255 / 50%); */
  font-weight: 400;
  transition: .03s;
  overflow: hidden;
}

.hyperlink-streaming:hover {
  background: rgb(255 255 255 / 35%);
}

.link {
  display: block;
  color: white;
  padding: 15px 25px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  width: 200px;
  transition: background-color 0.3s, transform 0.3s ease;
  font-size: 16px;
  text-transform: uppercase;
  /* Optional: Makes the text all uppercase */
}

.social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 15px;
}

.icon-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  /* space between icons */
  gap: 20px;
}

.icon-container a {
  color: rgb(255 255 255 / 50%);
  font-size: clamp(32px, 4vw, 48px);
  transition: transform 0.2s ease, color 0.2s ease;
}

.icon-container a:hover {
  transform: scale(1.2);
  color: #8000ff;
}