@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);
}

.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;
}

.about-section {
  max-width: 100%;
  margin: 0 ;
  padding: 2rem;
  text-align: left;
  color: white;
	-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;
}

.about-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center; /* ✅ vertically center image to text */
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
  max-width: 100%;
  padding-right: 2rem;
}

.about-section h1 {
  font-size: 100px;
  margin-bottom: 7rem;
  letter-spacing: 4px;
}

.about-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/*put this image to the right of the text */
.aboutimg {
  width: auto;
  max-height: 600px; /* ✅ keeps image from being too tall */
  max-width: 100%;
  padding-left:0vmax;
	-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;
}

.aboutimg img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}


@-webkit-keyframes fade-in {
  0% {
    opacity: 0;

  }
  100% {
    opacity: 1;

  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}