@font-face {
  font-family: 'TS-Block-Bold';
  src: url(TS-Block-Bold.ttf);
}

body{
  background-color: black;
  text-align: center;
}

h1{
  color:white;
  font-family: 'TS-Block-Bold';
}

.logorow{
  width: 90%;
  max-width: 1300px;
  height: auto;
  margin:auto;
}

.staticlogo{
  position: relative;
  bottom: 40px;
  width: 38%;
  min-width: 200px;
  height: auto;
  margin-left: auto;
  min-width: 495.9px;
  min-height: 129.137px;
}

.leftgif,
.rightgif{
  width: 15%;
  min-width: 100px;
}

p{
  position: relative;
  bottom:90px;
  color:white;
  font-family: 'TS-Block-Bold';
}

.navbar{
  padding: 1rem 0;
  background-color: transparent;
  margin-bottom: 20px;
}

.nav-links{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color:white;
  font-family: 'TS-Block-Bold';
}

@media (max-width: 1430px) {
  .nav-links {
    gap: 2rem;  /* shrink spacing slightly for mid-sized screens */
  }
}

.nav-links a{
  text-decoration: none;
  position: relative;
}

.nav-links a:link,
.nav-links a:visited{
  color: white;
}

.nav-links a::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px; /*space between text and underline*/;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: transform 0.5s ease;
}

.nav-links a:hover::after{
  transform: translateX(-50%) scaleX(1);
}

.container{
  display: flex;
  justify-content: center;
  padding-top: 2rem;
  height: 100vh;
}

.releasegrid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  grid-column-gap: 10rem;
  grid-row-gap: 20px;
    	-webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.releasegrid img{
  display: block;
  width: 300px;
  height: 300px;
  transition: transform 0.2s ease-in;
}

.releasegrid img:hover{
  transform: scale(1.1);
}

.releasegrid a{
  display: block;
  width: 300px;
  height: 300px;
  line-height: 0;
}


.gif-and-copyright{
  align-items: center;
  display: flex;
  flex-direction: column;
}

.copyright{
  color: white;
    font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.foot{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
}

.footerimg{
  height: 3%;
  width: 3%;
}

.social-links{
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
}

.social-links img{
  height: 24px;
  width: 24px;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;

  }
  100% {
    opacity: 1;

  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}