* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .landingPage .left{
    flex: 1 1 400px;
  }
  
  .container{
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    flex: 1 1 400px;
  }
  
  h1 {
    text-align: center;
    margin: 30px 0;
  }
  
  
  .slider-wrapper {
    width: 45vw;
    height: 50vh;
    background: #000;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 15px black;
  }
  
  .inner-wrapper {
    width: 500%;
    height: 100%;
    position: relative;
    left: -100%;
  }
  
  
  .slide {
    width: calc(100%/5);
    height: 100%;
    background: lightblue;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px;
    font-weight: 700;
    float: left;
  }

.button_container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
    gap: 16px;
}

.button_wrapper {
    border-radius: 50%;
}

.button {
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(90, 60, 40, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(6px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.button:hover {
    background: var(--mainGreen);
    border-color: var(--mainGreen);
    transform: scale(1.1);
    box-shadow: 0 4px 14px rgba(82, 122, 87, 0.4);
}

.button:active {
    transform: scale(0.96);
}

.prev::before,
.next::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid var(--walnut);
    border-left: 1.5px solid var(--walnut);
    transition: border-color 0.25s ease;
}

.button:hover::before {
    border-top-color: white;
    border-left-color: white;
}

.prev::before {
    transform: translate(2px, 0) rotate(-45deg);
}

.next::before {
    transform: translate(-2px, 0) rotate(135deg);
}