@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --title: "Roboto Condensed", sans-serif;
    --text: "Bitter", serif;
}

@media (min-width: 640px) {
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--title);
    margin-bottom: 16px;
    color: #222;
}

p {
    font-family: var(--text);
    margin: 8px 0;
    color: #444;
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

.logo {
    display: block;
    margin: 0 auto;
    width: 50px;
    margin-bottom: 18px;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 25vh;
    width: 100%;
    background-image: url(../images/bg.jpg);
    margin-bottom: 48px;
    position: relative;
}

.header > div {
    position: relative;
    z-index: 3;
}

.header::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #0006;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

}

.title {
    color: #f7f7f7;
    font-weight: bolder;
}

.container {
    display: block;
    width: 960px;
    max-width: 100dvw;
    margin: auto;
    margin-bottom: 48px;
}

ul {
    margin-left: 18px;
    color: #444;
}

b {
    color: #222;
}

a {
    cursor: pointer;
    color: #05f;
    text-decoration: none;
    font-weight: bolder;
    &:hover {
        text-decoration: underline;
    }
}