body {
    background-color: #FAFAFA;
    margin: 0;
    padding: 0;
    font-family: 'Cabin', sans-serif;
}


.button {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 1000;
}


.focus {
    position: relative;
    box-shadow: 0 0 0 1600px rgba(0, 0, 0, 0.5) !important;
    z-index: 21; /* has to be higher than the nav z-index */
    pointer-events: auto !important;
}


.focusing *:not(.focus) {
    pointer-events: none;
}


.feed {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 20px 20px;
    margin: 0 auto;
    max-width: 1200px;
}


nav.card {
    background-color: #EEEEEE;
    margin-top: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 16px;
    z-index: 20;
}


.feed.feed aside {
    position: relative;
    width: 260px;
    height: auto;
    flex-shrink: 0;
}


.feed main {
    margin: 0 20px;
    width: 100%;
}


.card {
    background-color: #EEEEEE;
    margin-top: 20px;
    width: 100%;
    height: 100px;
    text-align: center;
    line-height: 100px;
    font-size: 24px;
    border-radius: 5px;
    cursor: pointer;
}

.click.click.click {
    background-color: #03A9F4;
}

.shadow {
    box-shadow: 0 0 10px #FFD300;
}

.absolute {
    position: absolute;
    top: 100%;
    left: 0;
}



.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    color: #FFD300;
    pointer-events: none;
    z-index: 100;
}

.popup.open {
    display: flex;
}


@media all and (max-width: 1050px) {

    .feed {
        flex-wrap: wrap;
    }


    .feed aside {
        width: 100%;
    }


    .feed main {
        margin: 20px 0;
    }
}
