@font-face {
    font-display: block; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Jua';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/jua-v16-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

html {
    background-color: #201ca4;
}

#header_img {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

#header_text {
    color: #26c4e8;
    text-align: center;
    font-size: 2em;
    margin-top: 10px;
    margin-left: 10%;
    margin-right: 10%;
    font-family: 'Jua';
}

ul#featured_list {
    list-style-type: none;
    justify-content: center;
}

li.featured_img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

li div.img_bg {
    background-image: url('../static/image_bg.png');
    width: 500px;
    height: 500px;
    border-left: 30px;
    border-right: 30px;
    padding-left: auto;
    padding-right: auto;
    display: block;
    margin: 0 auto;
}

li div.img_bg.img_bg_thin {
    background-image: url('../static/image_bg_thin.png');
}

li.featured_img img {
    max-width: 400px;
    max-height: 400px;
    display: block;
    margin: 0 auto;
    position: relative;
    top:50%;
    transform: translateY(-50%);
}

li.featured_img div.img_bg.img_bg_thin img {
    max-width: 200px;
}

/* horizontal list for desktop */
@media screen and (min-width: 1680px) {
    ul#featured_list {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    li div.img_bg {
        display: table-cell;
        vertical-align: middle;
    }

    li.featured_img img {
        position:relative;
        top: 0%;
        transform: translateY(0%);
    }
    
}

