body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0 10px;
    position: relative;
}

img {
    width: 500px;
    height: 500px;
    object-fit: cover;
}

.carousel {
    box-shadow: 10px 15px 10px rgba(0, 0, 0, 0.3);
    width: 100%; 
    max-width: 500px; 
    overflow: hidden;
}

.image-container {
    display: flex;
    justify-content: center;
}

.buttons-container {
    display: flex;
    justify-content: space-between;
}

.btn {
    background-color: rebeccapurple;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 49.5%;
}

footer {
    margin-top: 20px;
    text-align: center;
}

footer p {
    font-size: 14px;
    color: #555;
}


@media (max-width: 426px) {
    .carousel {
        max-width: 100%;
    }
    .btn {
        padding: 6px;
    }
    img {
        height: 400px;
    }
}
