body,html{
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #ECEDF0;
    background-color: #404A65;
}
h1 {
  font-size: 2.5rem;
  margin: 10;
}

h2 {
  font-size: 1.25rem;
  margin: 20;
}

img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border: 2px solid #ccc;
  border-radius: 50%;
}
#result {
  font-size: 1.5rem;
  color: #333;
}

#btn {
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  background-color:#1F6FB0;
  border: none;
  border-radius: 8px;
  transition: background-color 0.3s;
}

#btn:hover {
  background-color: orange;
}
.main{
    display: flex  ;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.imageClass {
  width: 150px;
  height: 150px;
  perspective: 1000px; 
}
#img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 2px solid #ccc;
  border-radius: 50%;
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
}

.flipped {
  transform: rotateY(180deg);
}