* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
}

body {
  background-image: url('background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 40px;
  color: #ffffff;
  text-shadow: 
    -2px -2px 0 #000,  
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000,
     0px  2px 0 #000,
     2px  0px 0 #000,
     0px -2px 0 #000,
    -2px  0px 0 #000;
}

.container {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  width: 100%;
  max-width: 1200px;
}

.credits {
  text-align: left;
  line-height: 1.6;
  padding-top: 100px;
}

.credits h3 {
  color: #00ff00;
  text-decoration: underline;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.credits p {
  font-weight: bold;
  margin-bottom: 6px;
}

.og-thanks {
  color: #ff8c00;
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 25px;
}

.center-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(2px 2px 0px #000) drop-shadow(-2px -2px 0px #000);
}

.coming-soon {
  font-size: 2.2rem;
  font-weight: bold;
  margin-top: 30px;
}

.tagline {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 12px;
  max-width: 480px;
  line-height: 1.3;
}

.contact {
  text-align: right;
  line-height: 1.8;
  font-weight: bold;
  padding-top: 200px;
}

.contact h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact a {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}

.contact a:hover {
  text-decoration: underline;
}

.social-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: none;
  box-shadow: none;
}