/* STYLES FOR ABOVE THE FOLD */
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
body {
  background-color: var(--dark);
}
html,
body {
  height: 100%;
}
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero {
    display: flex;
    flex-direction: column;
    z-index: 1;
    position: relative;
    overflow: visible;
    top: 100px;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100%;
  }
  #hero .title-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: min(15vh, 20vw);
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  #hero .title-container .cs-picture-name {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
  }
  #hero .title-container .cs-picture-name img {
    height: 100%;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Ensures the image resizes properly */
  }
  #hero .title-container .cs-picture-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
  }
  #hero .title-container .cs-picture-logo img {
    height: 90%;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Ensures the image resizes properly */
  }
  #hero #cs-spotify {
    position: relative;
    margin: auto;
    max-width: 80em;
    min-height: 500px;
    height: 30rem;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  #hero .social-links {
    display: flex;
    margin-top: 1rem;
    position: relative;
    object-position: 0%;
  }
}
