body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.hero {
    position: relative;
    width: 100%;
    height: 60%;
    overflow: hidden;
}

.carousel {
    position: relative;
    height: 100%;
}

.carousel-container {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 5s ease-in-out;
    }

        .carousel-slide img.zoom {
            transform: scale(1.1);
        }

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.description {
    padding: 20px;
}

    .description h1 {
        text-align: center;
        font-size: 36px;
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .description p {
        text-align: center;
        margin-bottom: 10px;
    }

    .description a {
        text-align: center;
        color: #1E90FF;
        text-decoration: none;
    }

.creations {
    padding: 20px;
}

    .creations h1 {
        text-align: center;
        font-size: 36px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .creations h2 {
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .creations h3 {
        text-align: center;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .creations p {
        text-align: center;
        margin-bottom: 10px;
    }

    .creations a {
        text-align: center;
        color: #1E90FF;
        text-decoration: none;
    }

.image img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    height: 50%;
}