@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
  box-sizing: border-box;
}
body {
  background-color: rgba(50, 138, 76, 0.815);
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

.container {
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.4);
  width: 500px;
  height: 500px;
  overflow: hidden;
}

img {
  transform-origin: center center;
  object-fit: cover;
  height: 100%;
  width: 100%;
}


