@font-face {
    font-family: "Metaphor";
    src:url(../woff2/Metaphor.woff2) format(woff2);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    color:var(--text-color);
    background-image: url(/img/site__bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; 
    font-weight: 400;
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
    margin: 0;
}

:root {
    --text-color: #ffffff;
}
.body__content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    backdrop-filter: blur(20px); 
    background-color: rgba(0, 0, 0, 0.35); 
    font-family: "Metaphor", serif;
}

.content__releases__container {
    width: 80%;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.release__links__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.release__cover {
    aspect-ratio: 1/1;
    max-width: 400px;
    max-height: 400px;
    margin: 7px 0; 
}

.release__name {
    font-size: clamp(4px, 5vw, 20px);
    margin:0;
}

.release__artist {
    font-size: clamp(2.5px, 5vw, 12.5px);
    margin: 0;
}
.release__p {
    font-size: clamp(2.5px, 5vw, 12.5px);
    margin: 0;
}

.release__listen__link {
    text-decoration: none;
    margin: 3.5px 0;
    background-color: rgba(255, 255, 255, 0);
    text-align: center;
    align-content: center;
    width: 150px;
    height: 30px;
    border: 1px solid #ffffff;
    color:var(--text-color);
    font-size: clamp(2.5px, 5vw, 12.5px);
    transition: (0.25, 1, 0.5, 1) 50ms;
    cursor: pointer;
}

.release__listen__link:hover {
    background-color: #ffffff;
    color:#41345EFF;
}