/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5;
    color: #333;
  }
  
  /* Header and Navigation */
  header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 2em;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    letter-spacing: 1px;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  nav li {
    margin: 0 10px;
  }
  
  nav a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    background-color: #f1f1f1;
    padding: 8px 16px;
    border-radius: 20px;
  }
  
  nav a:hover {
    background-color: #007bff;
    color: #fff;
  }
  
  /* Main Content */
  main {
    padding: 50px 20px;
  }
  
  .hero {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 1.4em;
    margin-bottom: 30px;
  }
  
  .cta {
    background-color: #007bff;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.1em;
    transition: background-color 0.3s ease-in-out;
  }
  
  .cta:hover {
    background-color: #0062cc;
  }
  
  .about,
  .features {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .about p,
  .features p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .feature-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    max-width: 300px;
    transition: transform 0.3s ease-in-out;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
  }
  
  .card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
  }
  
  .card p {
    font-size: 1.1em;
    line-height: 1.5;
  }
  
  /* Testimonials */
  .testimonials {
    text-align: center;
    margin-bottom: 50px;
    padding: 50px 20px;
    background-color: #f5f5f5;
  }
  
  .testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
  }
  
  .testimonial-slider {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 30px;
  }
  
  .testimonial.active {
    opacity: 1;
  }
  
  .testimonial p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .testimonial p:before {
    content: '"';
    font-size: 2em;
    color: #007bff;
    margin-right: 5px;
    
  }
  
  .testimonial p:after {
    content: '"';
    font-size: 2em;
    color: #007bff;
    margin-left: 5px;
  }
  
  .navigation {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
  
  .navigation button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2em;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s ease-in-out;
  }
  
  .navigation button:hover {
    background-color: #0062cc;
  }
  .cta{
    background-color: black;
  }
  
  /* Footer */
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
  }
  /* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

main {
    padding: 50px 20px;
}

.pricing {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.plan {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.plan:hover {
    transform: translateY(-5px);
}

.plan h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

.plan p {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #007bff;
}

.plan ul {
    list-style: none;
    margin-bottom: 20px;
}

.plan ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.cta {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

.cta:hover {
    background-color: #0062cc;
}
/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}



main {
    padding: 50px 20px;
}

.games {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}
/* CSS for game cards in gamesPage.css */

.game-card img {
    width: 200px; /* Set a fixed width for all images */
    height: 150px; /* Set a fixed height for all images */
    object-fit: cover; /* Maintain aspect ratio and cover the container */
    border-radius: 8px; /* Optional: Add rounded corners for a nicer look */
}
/* CSS for game cards in gamesPage.css */

.game-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns with equal width */
    grid-gap: 20px; /* Adjust the gap between game cards as needed */
  }
  
  .game-card {
    width: 100%;
    background-color: #f9f9f9; /* Optional: Add background color for game cards */
    border-radius: 8px; /* Optional: Add rounded corners */
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add box shadow for depth */
    text-align: center; /* Center align content inside game card */
  }
  
  .game-card img {
    width: 100%;
    height: 150px; /* Set a fixed height for images */
    object-fit: cover;
    border-radius: 8px 8px 0 0; /* Rounded top corners for images */
  }
  
  .game-card h2 {
    margin-top: 10px;
    font-size: 1.2em;
  }
  
  .game-card p {
    font-size: 1em;
    margin-bottom: 15px;
  }
  
  .play-button {
    display: block;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s ease-in-out;
  }
  
  .play-button:hover {
    background-color: #0056b3;
  }
/* Keyframes for fade-in animation */
@keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Apply fade-in animation to the hero-content */
  .hero-content h1,
  .hero-content p {
    animation: fadeIn 1s ease forwards;
  }
/* Add styles for the Scrabble board and tiles */
.board {
  display: grid;
  grid-template-columns: repeat(15, 40px);
  grid-template-rows: repeat(15, 40px);
  gap: 2px;
  background-color: #e6e6e6;
  border: 2px solid #333;
  padding: 10px;
  margin: 20px auto;
  max-width: 640px;
}

.tile {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ccc;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}
    
  