:root {
    --background-color: #fffff2;
    --primary-color: #474F92;
    --secondary-color: #FF7575;
}

@font-face {
    font-family: header;
    src: url(../fonts/Qualion-DemiBold.woff2);
}

@font-face {
    font-family: text;
    src: url(../fonts/Qualion-Regular.woff2);
}

body {
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1,
h2,
address>span {
    font-weight: bold;
    font-family: header;
    color: var(--primary-color);
}

h1 {
    font-size: 21pt;
}

h2,
address>span {
    font-size: 18pt;
}

p,
a,
span {
    font-family: text;
    line-height: 1.4;
}

header {
    padding: 1rem;
}

img {
    width: 100%;
    height: auto;
}

main {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
}

hr {
    border: 1px solid lightgray;
    width: 80%;
    max-width: 768px;
    margin: 5rem 0;
    opacity: .7;
}

footer {
    opacity: .8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

address>p {
    margin-top: .5rem;
}

@media only screen and (min-width: 600px) {
    footer {
        flex-direction: row;
        gap: 4rem;
    }

    img {
        height: fit-content;
        width: fit-content;
    }
}