@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200&display=swap');
body {
  background: #deff58;
  color: #6c16c3;
  margin: 0;
  font-family: 'Nunito', sans-serif;
  text-align: center;
  font-size: 0;
}
.load {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #6c16c3;
  z-index: 9;
}
.logo {
  width: 300px;
  margin: 100px 0;
  max-width: 30%;
}
a {
  color: inherit;
  text-decoration: none;
}
.roster {
  display: inline-block;
  background: #6c16c3;
}
.roster img {
  width: 100%;
  opacity: .5;
}
.email {
  padding: 30px;
  display: inline-block;
  margin: 50px 0 100px;
  font-size: 20px;
}
.ul {
  display: inline-block;
  border-bottom: solid 1px;
  padding: 5px 0;
}
.artist {
  position: relative;
  display: inline-block;
  width: 25%;
}
@media (min-width: 1000px) {
  .artist:hover img {
    opacity: .1;
  }
  .artist:hover .name {
    position: absolute;
    font-size: 20px;
    color: #deff58;
    left: 0;
    width: 100%;
    top: 50%;
    transform: translatey(-50%);
  }
}
@media (max-width: 500px) {
  .logo {
    margin: 50px 0;
  }
  .email {
    font-size: 14px;
  }
  .name {
    display: block;
    background: #deff58;
    padding: 10px 0 30px;
    font-size: 14px;
  }
  .artist {
    width: 100%;
  }
  .roster {
    width: 90%;
  }
}