body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
}

a:link {
  background-color: red;
  border-radius: 4px;
  color:#F1F1F1;
}

a:visited, a:active  {
    color:#EAEAEA;
}

a:hover    {
  color:#F1F1F1;
  box-shadow: 0 0 10px #ccc;
}

.socs ul {
    list-style: none;
}

.socs li {
    display: inline-block;
    padding: 0.4vw;
    margin: 0.2vw;
    width:1.4vw;
    border-radius: 4px;
    transition: transform 0.5s ease;
}

.socs li:hover {
  transform: scale(4.1);
}

li span {
    display: none;
}

.noimgef {
  position: relative;
  overflow: hidden;
}

header {
    background-color: #0f0f0f;
    color: #fff;
    padding: 1em;
    text-align: center;
    position: fixed;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

header nav ul li {
    margin-right: 20px;
}

header nav a {
    color: #fff;
    text-decoration: none;
}

main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
}

section {
    background-color: #0f0f0f;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.artists-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.artist-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artist-profile img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 1em;
    text-align: center;
    clear: both;
}
