body {
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  background: #ffffff;
}

.container {
  text-align: center;
}

h1 {
  margin-bottom: 40px;
  transition: opacity .8s;
}

.fade {
  opacity: 0;
}

.languages {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.languages img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform .3s ease;
}

.languages img:hover {
  transform: scale(1.08);
}
