
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: Arial, sans-serif;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #D0FFBC;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #004226;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
}

label.logo {
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
}

nav ul li a {
  color: white;
  font-size: 17px;
  padding: 8px 12px;
  border-radius: 3px;
  text-transform: uppercase;
  text-decoration: none;
}

a.active, a:hover {
  background: #D0FFBC;
  color: #000;
  transition: 0.3s;
}

a.notready {
  background: #ffbcbc;
  color: #000;
  transition: 0.3s;
}

main {
  margin-top: 120px; 
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%
  

}

#quack {
  max-width: 90%;
  max-height: 80vh;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}


  label.logo {
    font-size: 20px;
  }

h1 {
  font-size: 20px;
  font-weight: bold;
}

.social-buttons {
  margin-top: 40px;
  color: #333 !important;
}

.social {
  text-decoration: none;
  margin: 0 10px;
  font-size: 40px;
  color: #333 !important; 
  transition: color 0.3s ease;
}

.social:hover {
  color: #004226 !important;
}

.cell {
  width: 75px;
  height: 75px;
  border: 2px solid;
  box-shadow: 0 0 0 2px;
  line-height: 75px;
  font-size: 50px;
  cursor: pointer;
  color: #004226 !important;
}

#noughtsandcrossesContainer
{
  font-family: Arial;
  text-align: center;
  
}

#cellContainer
{
  display: grid;
  grid-template-columns: repeat(3,auto);
  width: 225px;
  margin: auto;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #004226;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 30px 0;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  padding: 20px;
  background: #D0FFBC;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.timeline-content.text h2 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #004226;
}

.timeline-content.text p {
  font-size: 16px;
  margin: 0;
}

.timeline-content.image {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  box-shadow: none;
}

.timeline-content.image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #004226;
  border: 3px solid #D0FFBC;
  border-radius: 50%;
  z-index: 1;
}
