html, body {
    background: black;
    color: white;
}
* {
    font-family: "minimal";
}

.landing-container.loaded .hyperlink-container a {
    transition: all 0.15s ease, opacity 0.5s ease 1.5s;
    opacity: 1;
    padding: 10px 25px;
    background: rgba(125, 100, 100, 0.15);
    color: rgb(0, 0, 0);
    text-decoration: none;
}
.hyperlink-container a {
    opacity: 0;
    padding: 10px 25px;
    background: transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(5px) saturate(125%) brightness(90%);
	text-shadow: 0px 0px 1px rgba(0,0,0,0.25);
    border-radius: 10px;
    color: rgb(0, 0, 0);
    text-decoration: none;
}
.hyperlink-container a:hover {
    transition: all 0s ease;
    transform: scale(1.01);
}



.songs-container {
    background: rgb(1,1,1);
}
.song-item, .social-item {
    padding: 20px 10px;
    background: rgba(175, 150, 150, 0.15);
    box-shadow: 0 4px 6px rgba(39, 39, 39, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(5px) saturate(125%) brightness(90%);
	text-shadow: 0px 0px 1px rgba(0,0,0,0.25);
    border-radius: 20px;
    color: white;
}
.link-item {
    width: fit-content;
    min-width: 45%;
    padding: 8px 10px;
    background: rgba(175, 150, 150, 0.15);
    box-shadow: 0 4px 6px rgba(39, 39, 39, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(5px) saturate(125%) brightness(90%);
	text-shadow: 0px 0px 1px rgba(0,0,0,0.25);
    border-radius: 10px;
    color: white;
    margin: 10px 0;
    cursor: pointer;
}
.link-item:hover {
    transition: all 0s ease;
    transform: scale(1.01);
}
.songs-container .song-item .song-img-con, .socials-container .social-item .social-img-con {
    border-radius: 25px;
}



.games-container {
    background: rgb(1,1,1);
}



.socials-container {
    background: rgb(5,5,5);
}
.social-item, .social-img-con  {
    cursor: pointer;
}
.social-item:hover {
    transition: all 0s ease;
    transform: scale(1.01);
}