* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: "Dogjaw W01 Regular";
    background-color: black;
    scroll-behavior: smooth;
    color: white;
}

.logo {
    position: absolute;
    top: 10px;
    left: 25px;
    width: 90px;
    z-index: 100000;
}

.nav {
    background-color: rgba(39, 37, 37, 0.5);
    padding: 18px;
    border-radius: 8px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav ul {
    list-style-type: none;
    display: flex;
    gap: 50px;
    justify-content: center;
    padding: 0;
}

.nav ul li a {
    text-transform: uppercase;
    font-size: 25px;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: #e62b2b;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    width: 80vw;
    margin: 100px auto;
}

.grid-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.grid-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-item:hover img {
    transform: scale(0.9); 
}

.album-name {
    font-family: 'Urbanist', sans-serif;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 0;
    transition: opacity 0.3s ease;
    opacity: 0; 
}

.grid-item:hover .album-name {
    opacity: 1; 
}

.social-menu {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    margin-top: 50px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  
  footer p {
    font-size: 0.9rem;
  }
  
  footer p a {
  color: #e62b2b;
    
    text-decoration: none;
  }
  
  footer p a:hover {
    text-decoration: underline;
  }
  
