body {
  font-family: 'Arial', sans-serif;
  background-color: #e9ecef;
  text-align: center;
  margin: 0;
  padding: 0;
}




.container {
  margin: 50px auto;
  padding: 20px;
  border: 1px solid #ccc;
  background: #fff;
  width: 80%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}




h1 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 28px;
  text-transform: uppercase;
}
h4 {
  color: #2c3e50;
  margin-bottom: 90px;
  font-size: 40px;
  text-transform: uppercase;
}


h3 {
  color: #d11f1f;
  margin-bottom: 20px;
  font-size: 28px;
  text-transform: uppercase;
}


h2 {
  color: #d11f1f;
  margin-top: 80px;
  font-size: 28px;
  text-transform: uppercase;
}


p.word {
  font-size: 30px;
  color: #34495e;
  margin-bottom:60px
}


p {
  font-size: 30px;
  color: #34495e;
}


p.other {
  font-size: 20px;
  color: #34495e;
  margin-bottom:40px
}






.flex-container {
  color: #34495e;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}




button {
  flex: 1 0 5%;
  min-width: 40px;
  margin-top: 5px;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  background-color: #3498db;
  color: white;
  border: none;
}


.big-button {
   min-width: 300px;
   padding: 20px;
   font-size: 16px;
   background-color: #3498db;
   color: #fff;
   border-radius: 8px;
   border: none;
}


.button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}


button:hover {
  background-color: #2980b9;
}




input[type="text"] {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5
}


.main-layout {
 display: flex;
 align-items: flex-start;
 justify-content: center;
 gap: 60px;
 margin: 60px auto;
 width: 100%;
 max-width: 900px;
}




.game-content {
 flex: 1;
 min-width: 0px;
 text-align: center;
}


select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff; 
    color: #34495e; 
    margin-top: 10px; 
    width: 100%; 
    max-width: 300px; 
}

select:hover {
    border-color: #3498db; 
}

select:focus {
    outline: none; 
    border-color: #2980b9; 
    box-shadow: 0 0 5px rgba(41, 128, 185, 0.5); 
}









