
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

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

.container .img-1 {
  height: 50%;
  width: 100%;
  padding: 10px;
}

.img-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.bottom {
  display: flex;
  gap: 20px;
  height: 10vh;
  padding: 10px;
}

.bottom button {
  height: 100%;
  min-width: 110px;
  border: 4px solid black;
  border-radius: 7px;
  cursor: pointer;
  background-color:white;
  font-weight: bold;
  font-size: 20px;
}

button:hover {
  background-color: rgb(142, 38, 26);
}
