@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local("Lato Regular"), local("Lato-Regular.ttf"),
         url("./fonts/Lato-Regular.woff2") format("woff2"),
         url("./fonts/Lato-Regular.woff") format("woff");
}
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: local("Lato Italic"), local("Lato-Italic.ttf"),
         url("./fonts/Lato-Italic.woff2") format("woff2"),
         url("./fonts/Lato-Italic.woff") format("woff");
}
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local("Lato Black"), local("Lato-Black.ttf"),
         url("./fonts/Lato-Black.woff2") format("woff2"),
         url("./fonts/Lato-Black.woff") format("woff");
}

body {
    margin: 0 auto;
    font-family: 'Lato', 'Tahoma', sans-serif;
    max-width: 700px;
}
@media only screen and (max-device-width: 480px) {
    body {
        margin: 10px;
    }
}

h1 {
    color: rgba(0, 0, 0, 0.9);
    text-align: center;
    margin-bottom: 0;
}
h2 {
}
h3 {
    margin-top: 2em;
    margin-bottom: 0;
    padding-bottom: 0;
    color: rgba(0, 0, 0, 0.8);
}
h4 {
    color: rgba(0, 0, 0, 0.6);
}
a {
    color: rgba(0, 0, 255, 0.65);
}
li {
    margin-bottom: 10px;
}
p {
    line-height: 1.3em;
    margin-top: 0;
}
img {
    max-width: 95%;
}
.randomImg {
    position: relative;
}
.imgLoader.inactive .overlay {
    display: none;
}
.imgLoader .overlay {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
}
.imgLoader img {
    opacity: 0.01;
    margin-bottom: 15px;
}
.imgLoader.inactive img {
    opacity: 1;
}
.imgContainer {
    position: relative;
    min-height: 200px;
}

.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
}
.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

s {
    text-decoration-thickness: 0.1em;
}
