/* (c) 2023-eternity */

/* main style */
body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* actual page content */
.content {
  text-align: center;
  z-index: 2;
  position: relative;
}

.title {
  font-size: 3em;
  margin-bottom: 1vh;
}

.text {
  font-size: 1.5em;
}

/* 
  for the lyrics:
  we can't have them be too long width-wise
  but we also can't have them wrap in a weird way
*/
.lyrics {
  max-width: 600px;
  text-wrap: balance;
  line-height: 1.5rem;
}

/* social media link styles */
.socials {
  margin: 0;
  justify-content: center;
  display: flex;
  column-gap: 1.5rem;
  align-items: center;
}

.socials a {
  color: white;
  text-decoration: none;
  text-shadow: 2px 2px 5px var(--shadow-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--socials-font-size);
}

.social-icon-container {
  --socials-font-size: 3rem;
  font-size: var(--socials-font-size);
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--socials-font-size);
}

/* styles for the icon itself */
.socials .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* font awesome adjustments */
.socials .fab,
.socials .fa {
  line-height: 1;
  vertical-align: middle;
}

/*
  styles for the labels underneath the icons
*/
.social-label {
  margin-top: 0;
  font-size: 1rem;
}

/* special styles for the vsco icon */
.socials #vsco img {
  --vsco-svg-size: calc(var(--socials-font-size) - 0.5rem);
  width: var(--vsco-svg-size);
  height: var(--vsco-svg-size);
  vertical-align: middle;
  position: relative;
  margin: auto;
}

/* special styles for the vsco svg file */
#vsco-image {
  /* we need to give it the same shadow as our text! */
  filter: drop-shadow(2px 2px 5px var(--shadow-color));
}

.more-socials {
  margin: 0;
}

/* floating strawberry! */
.float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 1;
  animation: float 5s ease-in-out infinite;
  animation-delay: 0.1s;
  width: 12rem;
}

@keyframes float {
  0% {
    transform: translate(-50%, -60%);
  }
  50% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, -60%);
  }
}