@import "./button.css";
@import "./button-icon.css";
@import "./header.css";
@import "./hero.css";
@import "./wrapper.css";
@import "./menu.css";
@import "./project.css";
@import "./social.css";
@import "./footer.css";
@import "./form.css";
@import "./title.css";

.great-vibes-regular {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
}

:root {
  --fontBase: "Poppins", sans-serif;
  --headline1: bold 95px/153.71px var(--fontBase);
  --headline2: bold 55px/90px var(--fontBase);
  --headline3: bold 48px/77px var(--fontBase);
  --headline4: bold 34px/55px var(--fontBase);
  --headline5: bold 24px/38px var(--fontBase);
  --body1: 15px/25px var(--fontBase);
  --body2: 14px/22px var(--fontBase);
  --button: bold 14px/22px var(--fontBase);
  --nav: 18px/22px var(--fontBase);
  --caption: 12px/19px var(--fontBase);
  --gradient: radial-gradient(
      41.48% 11.48% at 2.38% 8.52%,
      #172a9f 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(135deg, #0c7ed7 0%, #172a9f 100%);
  --purple: #310a90;
  --green: #42e2b8;
  --white: white;
  --yellow: #e3b903;
  --background: #fafafa;
  --black: black;
  --griss: #424242;
  --primary: #33c2e8;
  --secondary: #2dedba;
}

body {
  background: var(--background);
  min-block-size: 100vh;
  font: var(--body1);
  color: var(--griss);
  margin: 0;
}

.newsletter {
  background: rgb(169, 254, 220);
  background: -moz-linear-gradient(
    0deg,
    rgba(169, 254, 220, 1) 0%,
    rgba(252, 255, 255, 1) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(169, 254, 220, 1) 0%,
    rgba(252, 255, 255, 1) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(169, 254, 220, 1) 0%,
    rgba(252, 255, 255, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a9fedc",endColorstr="#fcffff",GradientType=1);
}

#spotify-to-link {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 9999;
  cursor: pointer;
}
#spotify-to-link > img {
  transition: transform 0.3s ease-out;
}
#spotify-to-link > img:hover {
  transform: scale(1.1);
}
