@font-face {
    font-family: 'InterLight';
    src: url('assets/Inter_24pt-Regular.ttf') format('truetype'),
    /* font-weight: normal; */
    /* font-style: normal; */
}

@font-face {
    font-family: 'WorkAvec';
    src: url('assets/workavec-medium-webfont.ttf') format('truetype'),
         url('assets/workavec-medium-webfont.woff') format('woff');
    /* font-weight: normal; */
    /* font-style: normal; */
}


/* ===== Browser Reset ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-size: 16px;
    line-height: 1.5;
    font-family: WorkAvec, Helvetica, sans-serif;
    /* background: #f4f4f4; */
    color: #222;
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: rgb(0,0,255);
}

a:hover {
    /* text-decoration: underline; */
    background-color: rgb(0,0,255);
    color: white;
}

/* Images responsive by default */
img {
    max-width: 100%;
    display: block;
}

/* ===== Page Styling ===== */

.content {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wrapper {
    background: #fff;
    padding: 25px;
    max-width: 880px;
}

.wrapper h1 {
    margin-bottom: 10px;
}

.wrapper p {
    font-family: InterLight, Helvetica, sans-serif;
    margin-bottom: 15px;
}

.wrapper img {
    margin-top: 40px;
}

p.construction{
    margin-top: 40px;
    font-family: sans-serif;
    font-style: italic;
    font-size: 12px;
    color:rgb(166, 166, 166);
}

/* ===== Mobile adjustments ===== */
@media (max-width: 600px) {

    .content {
        padding: 10px;
        align-items: flex-start;
    }

    .wrapper {
        padding: 18px;
        border-radius: 4px;
    }

    .wrapper h1 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .wrapper p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

}