/*Setting Defaults For Cross Browser Stuff*/
body {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span {
  font-family: "montserrat";
  line-height: 1;
  margin: 0;
  font-weight: medium;
}

/*It be what it say*/
header {
  background: #fafafa;
  height: 75vh;
  min-height: 400px;
  overflow: hidden;
  position: relative;
  border-radius: 25em / 5em;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  -webkit-box-shadow: inset 0px -52px 69px -61px rgba(70, 190, 225, 0.55);
  -moz-box-shadow: inset 0px -52px 69px -61px rgba(70, 190, 225, 0.55);
  box-shadow: inset 0px -52px 69px -61px rgba(70, 190, 225, 0.55);
  filter: brightness(100%);
}

/*Centered container in header*/
.header-centered {
  height: 50%;
  min-width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: None;
}
/*Setting Header Elements Inline*/
.header-centered * {
  vertical-align: middle;
  display: inline-block;
}

/*Setting Header Elements Inline*/
.header-centered h1 {
  margin: 0 40px;
  font-size: 72px;
  font-weight: lighter;
}

/*Image in header*/
.header-centered svg {
  height: 100%;
  border-radius: 100%;
  background: #f6f6f6;
  -webkit-box-shadow: 0px 0px 69px -10px rgba(225, 70, 191, 0.55);
  -moz-box-shadow: 0px 0px 69px -10px rgba(225, 70, 191, 0.55);
  box-shadow: 0px 0px 69px -10px rgba(225, 70, 191, 0.55);
  cursor: pointer;
}

/*SVG SWIRL ANIMATION*/
.header-centered svg:hover .st1 {
  fill: #040202;
}

#page-content {
  width: 55%;
  margin: 0 auto;
  margin-top: 100px;
}

hr {
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  height: 1px;
}

.artist-list {
  width: 100%;
  font-size: 0px;
  margin-bottom: 100px;
}
.artist-item {
  overflow: hidden;
  width: calc(100% / 3 - 15.4px);
  margin: 10px;
  display: inline-block;
  min-height: 500px;
  height: 45vh;
  position: relative;
  border-radius: 40px;

  cursor: pointer;
  border: 1px solid black;
}
.artist-item:hover img {
  filter: brightness(30%);
}
.artist-item h2 {
  font-size: 20px;
  top: 70%;
  transform: translate(-50%, -50%);
  left: 50%;
  position: absolute;
  z-index: 1;
  color: white;
  font-weight: bold;
  transition: 0.4s;
  opacity: 0;
}
.artist-item:hover h2 {
  top: 50%;
  opacity: 1;
}
.artist-item img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
  transition: 0.2s;
}
.artist-list a:nth-child(1) .artist-item {
  margin-left: 0;
}
.artist-list a:nth-child(3n + 3) .artist-item {
  margin-right: 0;
}
.artist-list a:nth-child(4n + 4) .artist-item {
  margin-left: 0;
}

/*Cursor Selection Colour*/
::selection {
  background: #222;
  color: white;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
  background: #d0d0d0;
}

@media (max-width: 1000px) {
  #page-content {
    width: 80%;
  }
}
@media (max-width: 1080px) {
  .header-centered svg {
    height: 70%;
    display: block;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
  }
}
@media (max-width: 650px) {
  #page-content {
    width: calc(95% - 40px);
  }
  #our-artists {
    margin-top: 40px;
  }
  .artist-item {
    margin: 20px 0;
    width: calc(100%) !important;
  }
  .artist-item img {
    filter: brightness(40%);
  }
  .artist-item h2 {
    opacity: 1;
    top: 50%;
  }
}

/*Adding font montserrat*/
@font-face {
  font-family: "montserrat";
  src: url("font/Montserrat-Light.ttf");
}
