body {
    font-family: 'Press Start 2P', cursive; /* Pixel Art font */
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.column {
    background-color: #ffffff;
    padding: 20px;
    border: 2px solid #000000;
    box-shadow: 5px 5px 0 #000000;
    width: 30%;
    box-sizing: border-box;
}

#carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-slide {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    height: auto;
}

#prevBtn, #nextBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
}

#prevBtn {
    left: 10px;
}

#nextBtn {
    right: 10px;
}

h1, h2 {
    font-size: 24px;
}

p, li {
    font-size: 14px;
}
