* {
    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: 10px;
    gap: 35px;
}

.button_wrapper{
  border-radius: 50%; /* To match actual button */
  transition: all 0.1s ease;
}

.button_wrapper:hover {
  background-color: rgb(226, 226, 226);
}

.button:active {
  background-color: rgb(203, 203, 203);
}


.button {
    width: 50px;
    height: 50px;
    border: 2px solid var(--walnut);
    border-radius: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; 
    cursor: pointer;
}

.prev::before,
.next::before {
    content: ''; 
    position: absolute;
    width: 15px; 
    height: 15px; 
    border-top: 2px solid black;
    border-left: 2px solid black;
}

.prev::before {
  transform: translate(3px, 0) rotate(-45deg); /* Point the arrow left */
}

.next::before {
  transform: translate(-3px, 0) rotate(135deg); /* Point the arrow right */
}