body {
    font-family: 'Helvetica', 'Arial', sans-serif;
}


main {
    max-width: 800px;
    margin: 0px auto;
}

section {
    border-radius: 8px;
    padding-top: 5px;
}

section h2 {
    margin: 15px;
    text-align: center;
}

button {
    padding: 10px;
    border-radius: 5px;
}

footer {
    max-width: 800px;
    margin: 30px auto 50px auto;
    padding: 20px 10px;
    border-radius: 8px;
    background-color: rgb(239, 239, 239);
}

a, a:active, a:visited, a:hover {
    color: blue;
}

.broken {
    background-color: rgb(239, 239, 239);
}

.scroller {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
    overflow-x: hidden;
}

.scroller-with-scrollbar {
    overflow-x: scroll;
}

.scroll-item {
    display: inline-block;
    width: 500px;
    height: 300px;
    border-radius: 10px;
}

.item-1 {
    background-color: rgb(225, 225, 225);
}

.item-2 {
    background-color: rgb(110, 110, 110)
}

.item-3 {
    background-color: rgb(66, 66, 66)
}

.scroller-controls {
    text-align: center;
    margin-top: 10px;
}