body {
  background: #ffffff;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.logo img {
  width: 60vh;
  height: auto;
}

a {
  text-decoration: none;
  color: black;
}

.title {
  color: white;
  font-size: 24px;
  text-align: center;
  margin-top: 20px;
}

.image-container {
  display: flex;
  justify-content: center;
}

.image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 20px;
  transition: transform 0.4s;
  overflow: hidden;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image:hover {
  transform: scale(1.1);
}

footer {
  background: #f8f9fa;
  padding: 20px 0;
  text-align: center;
  width: 100%;
}
