
* {
  box-sizing: border-box;
}

body {
  display: flex;
  font-family: 'Playpen Sans', cursive;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  background-color: #2e2e2e;
}

img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.carousel {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  height: 530px;
  width: 500px;
  overflow: hidden;
}

.image-container {
  display: flex;
  transform: translateX(0);
  transition: transform 0.5s ease-in-out;
}

.buttons-container {
  display: flex;
  justify-content: space-between;

}

.btn {
  background-color: rgb(11, 103, 241);
  color: #ffffff;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  width: 49.5%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.btn:hover {
  opacity: 0.8;
}

.btn:focus {
  outline: none;
}