/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #1978FF;
    font-family: Arial, sans-serif;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.navbar a {
    color: rgb(140, 0, 255);
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover {
    text-decoration: underline;
}

.image-placeholder {
    width: 300px;
    height: 150px;
    background-color: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    border-radius: 10px;
}

.content {
    border: 5px solid #fff;
    padding: 20px;
    line-height: 1.8;
}


/* Grid container for the album cards */
.album-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    justify-items: center;
}

/* Album card styling */
.album-card {
    background-color: #fff;
    color: #000;
    width: 180px;
    border-radius: 0; /* Removed smooth corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Normal image tag with auto-sizing */
.album-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

/* Album details styling */
.album-details {
    padding: 10px;
}

.album-details p {
    margin: 5px 0;
}

.album-link {
    color: #00f;
    text-decoration: none;
    font-weight: bold;
}

.album-link:hover {
    text-decoration: underline;
}

a:link {
  color: blue;
  background-color: white;
  text-decoration: none;
}

a:visited {
  color: blue;
  background-color: white;;
  text-decoration: none;
}
