* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #940404; /* #cc0c0c */
  color: #000000;
  font-family: 'Domine', serif;
  font-weight: 700;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 5rem;
  padding-left: 150px;
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.02em;
  font-family: 'Domine', serif;
  color: white;
}


main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4rem;
  margin-top: 600px;
}




.mark {
  width: 400px;
  height: auto;
  margin-top: -500px;
  animation: colorshift 4s infinite;
  
}


@keyframes colorshift {
  0% { filter: invert(0); }
  /*50% { filter: invert(1); }*/
  50% { filter: invert(1) sepia(1) saturate(5) hue-rotate(340deg); }
  100% { filter: invert(0); }
}

.links {
  display: flex;
  gap: 5.5rem;
  font-family: 'Domine', serif;
}

.links a {
  color: inherit;
  text-decoration: none;
  /*border-bottom: 1px solid;*/
  font-weight: bold;
  transition: color 0.3s;
}

.links a:hover {
  /*opacity: 0.7;*/
  animation: colorshift 4s infinite;
}

.stripe {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 60px;
  background-image: url('/checker.svg');
  background-repeat: repeat;
  background-size: 60px 60px;
  z-index: 100;
  background: 
    linear-gradient(45deg, #000 25%, transparent 25%),
    linear-gradient(-45deg, #000 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #000 75%),
    linear-gradient(-45deg, transparent 75%, #000 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0;
  background-color: #fff;
  animation: flip 4s infinite;
}

.stripe-left { left: 0; }

.stripe-right { 
    right: 0;
}

@keyframes flip {
  0%, 49% { filter: invert(0); }
  50%, 100% { filter: invert(1); }
}

.now {
  text-align: center;
  margin: 2rem 0;
  font-weight: bolder;
}

.now a {
  color: inherit;
}

footer {
  text-align: center;
  padding: 0rem;
  font-size: 0.85rem;
  opacity: 0.6;
}


.links img {
  width: 32px;
  height: 32px;
  transition: opacity 0.3s;
}

.links a:hover img {
  opacity: 0.6;
}



.easter-egg {
  margin-top: 100vh;   /* 2 screens down */
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.easter-egg img {
  width: 100px;
}


@media (max-width: 768px) {
  header {
    padding: 2rem;
    padding-left: 4rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .mark {
    width: 200px;
    margin-top: -200px;
  }
  
  main {
    margin-top: 300px;
    gap: 2rem;
  }
  
  .stripe {
    width: 30px;
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  }

  .now {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .links {
    gap: 4rem;
  }

  
}
