body {
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

#message {
  color: white;
  padding: 5px;
  font-size: 1.2em;
  border-radius: 5px;
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes slideIn {
    0% {transform: translateY(-50px);}
    100% {transform: translateY(0);}
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

h1 {
    color: #ff0000;
    text-align: center;
    padding: 20px 0;
    font-size: 2em;
    animation: fadeIn 2s ease-in-out, slideIn 2s ease-in-out;
}

#message .highlight {
  color: #ffffff; /* Change this to the bright color you want */
  letter-spacing: 1px;
}

#guess-form {
    color: #fff;
    margin: 20px auto;
    padding: 30px;
    width: 80%;
    border-radius: 10px;
    box-shadow: 10px 10px 5px #ffffff;
    animation: fadeIn 2s ease-in-out;
}



body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f0f0f0;
}

h1 {
  font-size: 2.5rem;
  color: #ff0000;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

p {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

label {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
  display: block;
}

input[type="number"] {
  font-size: 1.2rem;
  padding: 0.5rem;
  width: 100%;
  max-width: 300px;
  margin-bottom: 1rem;
  border: 2px solid #555151;
  border-radius: 4px;
}

button {
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  background-color: #4a98f7;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 4px;
  margin-right: 1rem;
}

button:hover {
  background-color: #007bff;
}

button:active {
  transform: scale(0.97);
}

.input-field input:disabled {
  cursor: not-allowed;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

h1 {
    color: #ff0000;
    font-family: 'Algerian';
    letter-spacing: 10px;
    text-align: center;
    padding: 20px 0;
    font-size: 2em;
    animation: fadeIn 2s ease-in-out, slideIn 2s ease-in-out;
}


.button-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

button {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    background-color: #4a98f7;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
    margin-right: 1rem;
}

button:hover {
    background-color: #007bff;
}

button:active {
    transform: scale(0.97);
}

.input-field input:disabled {
    cursor: not-allowed;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
  
  button {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 0.5rem;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #3e8e41;
  }
  
  button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }

  body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Rest of your CSS */

/* Media query for screens smaller than 600px (typical breakpoint for mobile devices) */
@media only screen and (max-width: 600px) {
    .container {
        width: 100%;  /* Make the container take up the full width on small screens */
    }

    #guess-form {
        width: 90%;  /* Reduce the width of the form to create some margin on the sides */
    }
}

  
