@font-face {
  font-family: 'Pacifico';
  font-style: normal;
  font-weight: 400;
  src: local('Pacifico Regular'), local('Pacifico-Regular'),
    url(https://fonts.gstatic.com/s/pacifico/v12/FwZY7-Qmy14u9lezJ-6H6MmBp0u-.woff2)
      format('woff2');
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css?family=Inter');

:root{
  --background-color: #27282c;
  --text-color: white;
  --nav-color: darkgrey;
  --about-color: #383838;
}

.circlething {
  width:50px;
  border-radius: 50px;
  background-color: rgb(20, 20, 20);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  scroll-behavior: smooth;
}

.iforgotwhatthiswasfor{
  backdrop-filter: blur(15px);
  transition: all 1s;
  width: 146px;
  height: 146px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  padding: 30px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 200;
  box-shadow: 0px 5px 10px black;
}

.hidden {
  opacity:0;
  transform: translateX(-200%);
  transition: all 2s;
}

.show {
  opacity: 1;
  transform: translateX(0);
}

@media(prefers-reduced-motion){
  .hidden {
    transition: none;
  }
}

.logo {
  font-size: 2em;
  cursor: default;
}

.navigation a{
  font-size: 1.3em;
  margin-left: 12px;
  text-decoration: none;
  padding: 6px 15px;
  color: var(--nav-color);
}

.navigation a:hover{
  color: var(--text-color);
}

welcome {
  text-align: center;
}

welcome a {
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(0deg, var(--text-color), var(--text-color)) no-repeat right bottom / 0 var(--bg-h);
  transition: background-size 500ms;
    padding-bottom: 2px;
  --bg-h: 2px;
}

welcome a:where(:hover, :focus-visible) {
  background-size: 100% var(--bg-h);
  background-position-x: left;
}

.title {
  font-size: 2.25em;
  font-weight: 600;
  top: 20vh;
  position: relative;
  animation: 4s fadeIn;
}

.fadeIn{
  display: none;
  position:relative;
  animation: 6s fadeIn;
}

.subtitle {
  font-size: 1.80em;
  font-weight: 450;
  top: 21.5vh;
}

.subtext {
  font-size: 1.3em;
  top: 22vh;
  position: relative;
  font-weight: 300;
  padding-left: 20%;
  padding-right: 20%;
}

section {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 100vh;
  text-align: center;
}

img{
  border-radius: 20px;
  max-width: 100%;
}

.newSection {
  position: relative;
  top: 22vh;
  font-size: 2em;
}

.creditContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  top: 28vh;
}

.contributorCard {
  border-radius: 30px;
  padding: 7px;
  margin: 0 0.5rem;
  background-color: var(--text-color);
  transition: all 0.7s;
  width: 10rem;
  height: 10rem;
  z-index: 50;
  box-shadow: 0px 0px 0px #5a3899;
}

.contributorCard:nth-child(2) {
  transition-delay: 100ms;
}

.contributorCard:nth-child(3) {
  transition-delay: 200ms;
}

.contributorCard:nth-child(4) {
  transition-delay: 300ms;
}

.die {
  font-size: 1em;
  font-weight: 600;
  position: relative;
  top: 10px;
  z-index:60;
  background-color: rgba(0,0,0,0);
}

.about {
  border-radius: 30px;
  padding: 10px;
  background-color: var(--about-color);
  transition: all 0.7s;
  width: 40rem;
  height: 23rem;
  position: relative;
  top: 28vh;
  z-index: 50;
  transform: translateX(0%);
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.title.logo{
  width: 10vw;
  height: 100%;
  position: relative;
  left: 50vw;
  transform: translateX(-50%);
}

.about a {
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(0deg, white, white) no-repeat right bottom / 0 var(--bg-h);
  transition: background-size 500ms;
  padding-bottom: 2px;
  --bg-h: 2px;
}

.about a:where(:hover, :focus-visible) {
  background-size: 100% var(--bg-h);
  background-position-x: left;
}

.contributorCard:hover{
  box-shadow: 0px 0px 50px #5a3899;
}