body {
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

#image-container {
  width: 300px;
  height: 300px;
  overflow: hidden;
  margin-bottom: 20px;
}

#displayed-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buttons {
  display: flex;
}

.buttons button {
  margin: 0 10px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}
