* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: -apple-system, Segoe UI Light, 'Roboto', "Helvetica Neue", sans-serif;
    color: #fff;
}

body {
    background-color: #111;
}

.jumbotron {
    background: url(../assets/hero_cb750.jpg) no-repeat center center / cover;
    width: 100%;
    height: 320px;
    position: relative;

    &:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(17, 17, 17, 1));
    }
}

.jumbotron__title {
    font-size: 4rem;
    position: absolute;
    z-index: 1;
    width: 100%;
    text-align: center;
    bottom: -40px;
}

.main-container {
    max-width: 800px;
    margin: 1rem auto;
    padding: 2rem;
}

h2 {
    font-size: 1.5rem;
}

.app-link {
    display: block;
    background-color: #fff;
    color: #111;
    border-radius: 6px;
    padding: 8px 1rem;
    text-decoration: none;
    text-align: center;
    margin: 2rem auto;
    width: fit-content;
    transition: 300ms;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;

    &:hover {
        background-color: #000000;
        color: #fff;
    }
}

.note {
    margin-top: 2rem;
    display: block;
}