body {
    background-color: #fdf6e3;
    background-image: url('background_texture.png');
    font-family: 'Nunito', sans-serif;
    color: #5d4037;
    margin: 0;
    padding: 2rem;
    position: relative;
    min-height: 100vh;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

header h1 {
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    color: #5d4037;
    text-shadow: 2px 2px #f5e6c4;
    margin-bottom: 2rem;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.album-card {
    background-color: #fffaf0;
    border: 2px solid #a1887f;
    border-radius: 15px;
    box-shadow: 5px 5px 15px rgba(93, 64, 55, 0.2);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.album-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 8px 8px 20px rgba(93, 64, 55, 0.3);
}

.album-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-bottom: 2px solid #a1887f;
}

.album-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.album-info h2 {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: #8d6e63;
    margin: 0 0 0.5rem 0;
}

.album-info .artist {
    font-weight: bold;
    color: #5d4037;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.album-info .description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.listen-button {
    background-color: #ffd54f;
    color: #5d4037;
    font-weight: bold;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 2px solid #5d4037;
    text-align: center;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.listen-button:hover {
    background-color: #ffca28;
}

.listen-button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}


.final-message {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    color: #5d4037;
}

.corner-decoration {
    position: fixed;
    width: 150px;
    height: auto;
    pointer-events: none;
    opacity: 0.9;
    z-index: 10;
}

.top-left {
    top: 10px;
    left: 10px;
}

.bottom-right {
    bottom: 10px;
    right: 10px;
}


@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    header h1 {
        font-size: 2.5rem;
    }
    .corner-decoration {
        width: 100px;
    }
}

