body {
    text-align: center;
    background-color: #eee;
    background-image: linear-gradient(90deg, rgba(153, 0, 255, 0) 0%, rgb(249 249 249) 18%, rgb(249 249 249) 81%, rgba(252, 176, 69, 0) 100%), url("../images/background.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner {
    height: 256px;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.banner h1 {
    margin: 0;
    padding: 100px 0;
    font-size: 50px;
    font-family: system-ui;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 0 5px rgb(0 0 0), 0 0 5px rgb(0 0 0);
}

.centered {
    display: inline-block;
    text-align: left;
    width: 60%;
}

.container {
    background-color: rgb(249 249 249);
    padding: 20px;
}

.container h1 {
    color: #565656;
    font-family: arial;
    font-size: 38px;
}

.container h2 {
    color: #565656;
    font-family: arial;
}

.container p {
    font-family: arial;
    font-size: 18px;
}

nav {
    display: block;
    width: 100%;
    text-align: center;
}

nav ul {
    display: inline-block;
    text-align: center;
}

nav li {
    display: inline-block;
    margin: 0 20px;
}

.information-link {
    color: #358ED7;
    text-decoration: none;
    font-size: 12px;
    position: relative;
    margin: 10px 0;
    display: inline-block;
}

.information-link:before {
    content: "?";
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: 2px solid rgba(53, 142, 215, 0.5);
    display: inline-block;
    text-align: center;
    line-height: 16px;
    opacity: 0.5;
    margin-right: 5px;
}

.price-display {
    color: #565656;
    font-weight: bold;
}

.content-container {
    border: 1px solid #a2a9b1;
    background-color: #f8f9fa;
    display: table;
    padding: 7px;
    margin-bottom: 60px;
}

.content-container ol {
    margin: 8px 0;
    padding-left: 18px;
}

@media (max-device-width: 950px) {
    body {
        background-image: url("../images/background.webp");
        margin: 0;
    }

    .container {
        padding: 10px;
    }

    .banner {
        height: 150px;
    }

    .banner h1 {
        font-size: 40px;
        padding: 49px 0;
    }

    .centered {
        width: 100%;
    }
}