@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: rgb(255, 255, 255);
}

li, a, button {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: black;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    position: relative;
   
}

.logo {
    cursor: pointer;
    height: 100px;
    width: 250px;
}

.nav_links {
    list-style: none;
}

.nav_links li {
    display: inline-block;
    padding: 0px 20px;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover {
   color: rgb(255, 0, 0);
}

.button-container {
    top: 50px; 
    right: 50px; 
    z-index: 4; 
}

.button-container a {
    text-decoration: none;
}

.button-container button {
    padding: 9px 25px;
    background-color: rgba(255, 0, 0, 0.884);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    margin-right: 10px; 
}

.button-container button:last-child {
    margin-right: 20px; 
}

.button-container button:hover {
    background-color: rgb(193, 0, 0);
}

.carousel {
    position: relative;
    width: 100vw;
    height: 52.25vw;
    
    margin: 0;
    overflow: hidden;
   
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   
}

.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1; /* Carousel buttons should be below header buttons */
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}




