/* Base styles for desktop and larger screens */
body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.container {
    text-align: center;
    width: 100%;
    padding: 0 20px; /* Add some padding for smaller screens */
}

.logo {
    max-width: 200px;
    margin: 20px auto; /* Center logo on all screen sizes */
}

.albums {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
    width: 100%;
}

.album {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;  /* Rounded corners */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for effect */
    object-fit: cover; /* Ensure image covers the entire area with maintained aspect ratio */
}

.footer {
    position: relative;
    bottom: 10px;
    text-align: center;
    width: 100%;
    font-size: 14px;
    color: #555;
    margin-top: 20px;
}

/* Responsive styles for tablets and smaller screens */
@media (max-width: 768px) {
    .albums {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }

    .album {
        max-width: 250px;
    }
}

/* Responsive styles for mobile devices */
@media (max-width: 480px) {
    .albums {
        grid-template-columns: 1fr; /* 1 column on small screens */
    }

    .album {
        width: 100%;
        max-width: 100%;
    }

    .footer {
        position: relative;
        margin-top: 20px;
    }
}
