@font-face {
  font-family: "Syne Mono";
  src: url("./fonts/Syne_Mono/SyneMono-Regular.ttf") format("truetype");
  /* font-weight: 400; */
  font-style: normal;
}

body {
    font-family: "Syne Mono", Arial, sans-serif;
    background-color: #000000;
    color: whitesmoke;
    margin: 0%;
}

.bottom-shadow {
  width: 100%;
  height: 1px;
  box-shadow: 0 0 600px 70px #094bda50;  
  pointer-events: none;
}

.bottom-shadow.visible {
  opacity: 1;
}

img {
    max-width: 100%;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  transition: opacity 5s ease;
}

h1 {
    font-family: "Syne Mono", Arial, sans-serif;
    font-size: 40px;
    text-align: center;
    max-width: 500px;
}

h2 {
    font-family: "Syne Mono", Arial, sans-serif;
    font-size: 20px;
    text-align: center;
    max-width: 500px;
}

.pfp {
    height: 100px;
    border-radius: 50%;
}

.newest-release {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    margin-top: 3%;
}

.spotify-embed {
    width: 500px;
    height: 200px;
    border: 0;
}

.release-img {
    box-shadow:
    0 0 150px 100px #b90d0d50,
    0 0 400px 180px #86090925;
    width: 80%;
    max-width: 500px;
    height: auto;
}

.platform-links {
    display: flex;
    flex-wrap: wrap; 
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    margin-bottom: 100px;
    width: 50%;
    max-width: 400px;
    padding: 0 16px;  
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: purple;
    margin-bottom: 15px;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4 / 1;
    border-radius: 20px; /* rounds edges  */
    transition: background-color 0.1s ease;
    border: solid 5px rgb(80, 80, 80);
}

.instagram {
    width: 50%;
    max-width: 300px;  
    background-color: #0f0f0f;
    border-color: #ee2a7b;
}
.instagram:hover,
.instagram:focus-visible {
    background-color: #251e03; 
    border-color: #6228d7;

}

.spotify { 
    background-color: #0f0f0f; 
    border-color: #1DB954;
    
}
.spotify:hover,
.spotify:focus-visible {
    background-color: #183121; 
    border-color: #23db64;

}

.youtube { 
    background-color: #0f0f0f; 
    border-color: #FF0000;
}
.youtube:hover,
.youtube:focus-visible {
    background-color: #311818; 
    border-color: #ff1616;

}

.apple-music { 
    background-color: #0f0f0f; 
    border-color: #e2e2e2;

}
.apple-music:hover,
.apple-music:focus-visible {
    background-color: #2b2b2b; 
    border-color: #ffffff;

}
.yt-music { 
    background-color: #000000; 
}


