* {
  padding: 0;
  margin: 0;
  border: none;

  font-family: poppins;
}
html,
body {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;

  align-items: center;
  justify-self: center;

  padding-top: 30px;
}
/* 
-
-- Header
*/

.header {
  display: flex;

  width: 50%;
  height: 8%;

  gap: 4%;
  align-items: end;
  justify-content: left;
}

.header img {
  width: auto;
  height: 100%;
}

.header span {
  font-size: 1.5rem;
}

/* 
---Arrows
*/

/* 
-
-- Main
*/

.container {
  display: flex;

  margin-top: 30px;
  width: 75%;
  height: calc(80% - 30px);

  justify-content: center;
  align-items: center;
}

.left-arrow,
.right-arrow {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 10%;
}

.left-arrow img,
.right-arrow img {
  width: 70px;
  cursor: pointer;
}

.left-arrow img:hover,
.right-arrow img:hover {
  background-color: rgb(216, 216, 216);
}

.slide-wrapper {
  display: flex;
  width: 80%;
  height: 90%;
  margin: 10px;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Hide the scrollbar */
}

.slider {
  display: flex;
  aspect-ratio: 16 / 9;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.slider::-webkit-scrollbar {
  display: none; /* Hide the scrollbar for WebKit browsers (Chrome, Safari) */
}

.slider img {
  flex: 1 0 100%;
  scroll-snap-align: start;
  object-fit: cover;
}

.footer {
  display: flex;
  gap: 5px;

  align-items: center;
  justify-content: center;
}
.radio {
  appearance: none; /* Remove default appearance */
  outline: none; /* Remove focus border */

  width: 15px; /* Adjust the size as needed */
  height: 15px;

  border: 2px solid #000; /* Border color */
  border-radius: 50%; /* Make it circular */

  margin: 0 5px; /* Adjust spacing as needed */

  transition: background-color 0.3s, border 0.3s; /* Add smooth transition */
}

.radio:checked {
  background-color: lightgreen; /* Change background color when checked */
  border: 2px solid lightgreen; /* Change border color when checked */
}
