*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --border-default: 10px;
}

body {
    width: 100dvw;
    height: 100dvh;
    background-color: #010103;
}

header {
    height: 10%;
    width: 100vw;
    display: flex;
    justify-content: center;
}

header img {
    width: auto;
}

main {
    width: 100dvw;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-slideshow {
    display: flex;
    height: 80%;
    width: 70%;
    justify-content: space-between;
    border-radius: var(--border-default);
}

.container-items {
    position: absolute;
    width: 70%;
    height: 80%;
    border-radius: var(--border-default);
    display: flex;
    overflow: hidden;
}

.item {
    min-width: 100%;
    height: 100%;
    border-radius: var(--border-default);
    transition: ease-in-out 0.3s;
}

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

.item:first-child {
    margin-left: -100%;
}

.action-button {
    padding: 10px;
    display: grid;
    place-content: center;
    font-size: 30px;
    color: #FFFA;
    background-color: transparent;
    transition: ease-in-out 0.3s;
    z-index: 1;
    border-radius: var(--border-default);
}

.action-button:hover {
    cursor: pointer;
    color: white;
}

#previous {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

#next {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

@media (max-width: 1024px) {
    .container-slideshow {
        height: 40%;
        width: 70%;
    }

    .container-items {
        height: 40%;
        width: 70%;
    }
}

@media (max-width: 480px) {

    .container-slideshow {
        height: 25%;
        width: 70%;
    }

    .container-items {
        height: 25%;
        width: 70%;
    }

}