/* Basic styling */
/* Navbar container */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    padding: 10px 20px;
}

/* Hamburger button */
.menu-toggle {
    font-size: 24px;
    font-family: "Big Shoulders Stencil", sans-serif;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: none; /* Hidden by default on larger screens */
}

/* Menu styling */
.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .menu {
        display: none; /* Initially hidden */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 50px;
        left: 0;
        background-color: #333;
    }

    .menu li {
        text-align: center;
        padding: 10px 0;
    }

    .menu-toggle {
        display: block; /* Show button on small screens */
    }

    .menu.show {
        display: flex;
    }
}
body{
background-color: black;
color: whitesmoke;
font-family: "Big Shoulders Stencil", sans-serif;
}
.flex-container {
    display: flex;
   gap: 20px;
    flex-wrap: wrap;
  }

  .artist-box {
    width: 25%;
    color : white ;
    text-align : center
  }

  .artist-box img {
    width: 100%;
    object-fit: cover;
  }
.right, .left {
    width: calc(50% - 10px);

}

iframe {
    width:100%;
    height: 360px;
}
.left img {
    width :100%
}
  
  
  