* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #2f3e56;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  max-width: 400px;
  padding: 40px 20px;
}

h1 {
  font-size: 2.8rem;
  font-weight: 800;
  text-shadow: 2px 2px 0 #00000040;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  color: #d3d3d3;
  margin-bottom: 30px;
}

img {
  width: 120px;
  margin-bottom: 15px;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
  cursor: pointer;
}

img:active {
  transform: scale(0.95);
}

#result {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin: 20px 0;
}

button{
    background-color: #007bff;
    color: white;
    padding: 10px 25px;
    font-size: 1rem;
    border: none;
    border-radius: 7px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.2s ease;
}
button:hover{
    background-color: #0056b3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #2f3e56;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  max-width: 400px;
  padding: 40px 20px;
}

h1 {
  font-size: 2.8rem;
  font-weight: 800;
  text-shadow: 2px 2px 0 #00000040;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  color: #d3d3d3;
  margin-bottom: 30px;
}

img {
  width: 120px;
  margin-bottom: 15px;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
  cursor: pointer;
}

img:active {
  transform: scale(0.95);
}

#result {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin: 20px 0;
}

button{
    background-color: #007bff;
    color: white;
    padding: 10px 25px;
    font-size: 1rem;
    border: none;
    border-radius: 7px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.2s ease;
}
button:hover{
    background-color: #0056b3;
}
.flip{
    animation: flip 0.6s ease-in-out;
}
@keyframes flip {
  0%{
    transform: rotatex(0deg);
  }
  100%{
    transform: rotatex(720deg);
  }
}

