@import url("shared.css");

html,
body {
    max-width: 100vw;
    /*overflow-x: hidden;*/
}

.jumbotron {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    min-height: 100vh;
    box-sizing: border-box;
    background-color: black;
    gap: 20px;
    color: white;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(50%);
    }
}

.jumbotron .next-page {
    float: bottom;
    animation: bounce;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

footer {
    background-color: black;
    color: white;
    padding: 10px;
    display: flex;
    font-size: 0.8em;
    align-items: center;
    justify-content: center;
}
