body {
    background-image: url("MiloFaris-Crop.jpg");
    background-position: center;
}

a {
    color: #38553a;
}

.nav-item [class^="bi-"] {
    padding-right: .2rem;
}

.nav-bar {
    background-color: #a4c059;
    padding: 2px 5px;
}

.nav-bar-list {
    list-style-type: none;
    padding: 0;
    margin: 2px;
}

.nav-item {
    display: inline-block;
}

.nav-item a {
    margin: 0 10px;
    color: black;
    text-decoration: none;
    font-size: 1.2em;
}

.nav-item a:hover {
    color: #38553a;
    text-decoration: underline;
}

.webring {
    float: right;
    background-color: greenyellow;
}

section {
    background-color: #a4c059DD;
    padding: 0 10px;
}

#points {
    display: grid;
    margin-top: 10px;
    margin-bottom: 40px;
    gap: 10px 10px;
    grid-template-columns: 1fr 2fr;
}

@media (min-width: 800px) {
    #fast-facts {
        grid-column: 1 / span 1;
        grid-row: 1 / span 2;
    }
    
    #intro {
        grid-column: 2 / span 1;
    }
    
    #faq {
        grid-column: 2 / span 1;
    }   
}

@media (max-width: 800px) {
    #fast-facts {
        grid-column: 1 / span 2;
        grid-row: 1 / span 1;
    }
    
    #intro {
        grid-column: 1 / span 2;
        grid-row: 2 / span 1;
    }
    
    #faq {
        grid-column: 1 / span 2;
        grid-row: 3 / span 1;
    }   
}

.fact {
    list-style: url("list-pointer.svg");
}

.refsheet {
    font-size: 0.8rem;
    vertical-align: middle;
}

.refsheet::before {
    content: '(';
    color: black;
}

.refsheet::after {
    content: ')';
    color: black;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #a4c059;
    color: black;
}

.footer p {
    margin: 2px 10px
}