body {
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    padding-top: 30px;
}

h1 {
    color: white;
    font-family:'Times New Roman', Times, serif;
}

h3 {
    color: white;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

.carousel-section {
    width: 90%;
    max-width: 1000px;
    margin-top: 40px;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 16px;
    padding: 20px;
    scrollbar-width: none;
    cursor: grab;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.card {
    flex: 0 0 250px;
    background: #222;
    color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    text-align: center;
}

button#left-btn, button#right-btn {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 2;
}

#left-btn {
    margin-right: 10px;
}

#right-btn {
    margin-left: 10px;
}