body {
    background: #121212;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
}
.link-style {
    color: #f39c12;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.link-style:hover {
    color: #9e6a15;
    text-decoration: underline;
}
footer {
    background-color: #1f1f1f;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #333;
}
footer p {
    margin: 0;
    color: #757575;
}
.album-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.album-item {
    display: flex;
    align-items: center;
    background-color: #1e1e1e;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.album-img {
    width: 100px;
    height: 100px;
    border-radius: 4px;
    margin-right: 10px;
    object-fit: cover;
}
.album-name {
    font-size: 16px;
    font-weight: bold;
}