@charset "utf-8";
body{
    margin: 0;
    background-image: url(../img/back.jpg);
    background-size: cover;
    background-position: center;
    font-family: 'Playfair Display', serif;
    color: #eaefef;
}

h1{
    background-image: url(top_1.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    color: #eaefef;
    font-weight: bold;
    font-size: 50px;
    position: relative;
    overflow: hidden;
}
h1::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
h1 span{
    position:relative;
    font-family: 'Alex Brush', cursive;
    z-index: 1;
}

.firstview{
    background-image: url(img/sya.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: 20px;
    height: 50px;
}
.firstview .section-title{
    text-align:center;
    margin: 40px auto 20px;
    width: 100%;
}
.firstview .title-text{
    color: #eaefef;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
}
.firstview .title-border{
    width: 1000px;
    height: 2px;
    background-color: #eaefef;
    margin: 10px auto 0;
}

.album-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

a.album-card{
    background:
    linear-gradient(to bottom right, rgba(255,255,255,0.15) 0%,rgba(0,0,0,0.40) 120%),
    radial-gradient(at top center,rgba(255,255,255,0.40) 0%,rgba(0,0,0,0.40) 120%, #989898);
    background-blend-mode: multiply,multiply;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    color: inherit;
}

a.album-card img:hover{
    transform: scale(1.05);
}

.album-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.song-title{
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px;
    color: #eaefef;
}

.artist-name{
    font-size: 14px;
    color: #ccc;
}