/* Base Stylings */

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

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  overflow-y: scroll;
}

/* Main Stylings */

.main-container {
  min-height: 100vh;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Carousel Stylings */

.carousel-container {
  width: 300px;
  height: 250px;
  border: 2px solid #333;
  display: flex;
  flex-direction: column;
}
.carousel-upper {
  background: #fff;
  padding: 10px 15px;
  border-bottom: 7px solid #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.carousel-btn-cont {
  width: 25px;
  height: 25px;
  background: #333;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.carousel-btn-cont--left {
  transform: rotateZ(90deg);
}

.carousel-btn-cont--right {
  transform: rotateZ(270deg);
}

.carousel-btn-icon {
  width: 8px;
}

.carousel-logo-cont {
  width: 70px;
}

.carousel-logo-cont-img {
  width: 100%;
  display: block;
}

.carousel-images-list-cont {
  flex-grow: 1;
  overflow: hidden;
}

.carousel-images-list {
  display: flex;
  height: 100%;
  transition: transform 0.5s;
}

.carousel-image-cont {
  width: 100%;
  flex-shrink: 0;
}

.carousel-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
