body {
    font-style: normal;
}
.title{
    color:white;
}
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
    margin: 20px;
}
.album-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.album-cover {
    width: 300px;
    height: 300px;
    transition: 0.3s;
}
.album-title {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    opacity: 0;
    transition: opacity 0.3s;
}
.album-container:hover .album-title {
    opacity: 1;
}
.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: white;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    text-align: left;
}
.close {
    float: right;
    font-size: 20px;
    cursor: pointer;
}