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

:root {
    --bg-image: url('./img/Iguacu.jpg');
}

main {
    height: 80vh;
    width: 80vw;
    place-content: center;
    display: grid;
}

.container-image {
    height: 400px;
    width: 640px;
}

.carrossel {
    width: 100%;
    height: 100%;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.container {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.container input {
    font-size: 2rem;
}

.container-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.container button {
    padding: 12px;
    width: 45%;
}
