body {
    background-image: linear-gradient( 45deg, rebeccapurple, deepskyblue, lawngreen);
    background-size: 100% 100%;
    background-attachment: fixed;
    height: 100vh;
    margin: 0;
}

h1 {
    color: papayawhip;
    font-family: sans-serif, comicsans;
    margin: 50px;
    text-align: left;
    align-content: left;
    font-size: 40px;
    transition: transform 1.5s;
}

h1:hover {
    transform: scale(1.5);
}

#game-container {
    text-align: center;
    padding-left: 90px;
}

button {
    font-size: 24px;
    padding: 10px 20px;
    cursor: pointer;
}

#game {
    position: relative;
    width: 600px;
    height: 400px;
    background-color: black;
    margin: 30px;
    margin-left: 50px;
}

#player, #computer {
    width: 10px;
    height: 80px;
    background-color: orange;
    position: absolute;
}

#player {
    left: 10px;
}

#computer {
    right: 10px;
}

#ball {
    width: 20px;
    height: 20px;
    background-color: green;
    border-radius: 50%;
    position: absolute;
    left: 290px;
    top: 190px;
}

#score {
    color: white;
    font-size: 24px;
    position: absolute;
    top: 10px;
    left: 240px;
}

.neev-photo1 {
    display: flex;
    align-content: flex-start;
    justify-content: flex-start;
    margin-left: 50px;
    padding-right:100px;
    transition: transform 0.5s;
}

.neev-photo1:hover {
    transform: scale(1.15);
}

.neev-photo2 {
    display: flex;
    align-content: flex-start;
    justify-content: flex-start;
    padding-right:50px;
    padding-top:30px;
    padding-bottom:30px;
    transition: transform 0.5s;
}

.neev-photo2:hover {
    transform: scale(1.08);
}

.section1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
}

.section2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 20px;
}

#play-button {
    background-image: linear-gradient(45deg, hotpink, deepskyblue);
    color: white;
    border-radius:15px;
    transition: transform 0.2s;
}

#play-button:hover {
    background-image: linear-gradient(45deg, deepskyblue, hotpink);
    color: papayawhip;
    transform: scale(1.05);
}

#playAgainButton {
    background-image: linear-gradient(45deg, hotpink, deepskyblue);
    color: white;
    margin-left:20px;
    border-radius:15px;
    transition: transform 0.2s;
}

#playAgainButton:hover {
    background-image: linear-gradient(45deg, deepskyblue, hotpink);
    color: papayawhip;
    transform: scale(1.05);
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
    rotate: 0deg;
  }
  50% {
    transform: scale(1.5,1.5);
  }
  100% {
    transform: scale(1, 1);
    rotate: 0deg;
  }
}






/* Section3 style */



.section3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px;
}

.message-box {
  margin: 10px;
  padding: 10px;
  border: 2px solid black;
  border-radius: 12px;
  max-width: 300px; /* Adjust the maximum width as needed */
  background-color: lightgoldenrodyellow; /* Customize the background color */
  color: navy; /* Customize the text color */
  font-family: Arial, sans-serif; /* Customize the font family */
  font-size: 16px; /* Customize the font size */
  transition: transform 0.5s;
  text-align: center;
  line-height: 1.5; /* Adjust line height for better text spacing */
  flex: 1; /* Distribute available space evenly in the row */
  min-width: 200px; /* Set a minimum width to prevent very narrow boxes */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.message-box:hover {
  transform: scale(1.05);
  font-weight: 500;
  font-size: 17px;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center; /* Use align-items to vertically center the content */
  text-align: center;
  margin-bottom: 30px;
}

#demo {
    font-size: 60px; /* Increase the font size to make it larger */
    font-weight: bold; /* Add bold font-weight */
    margin-top: 80px;
    color: rebeccapurple;
    letter-spacing:2px;
    text-transform: uppercase;
    }




