@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


* {
    -webkit-font-smoothing: antialiased !important;
    box-sizing: border-box;
    font-family: 'Open Sans', 'Helvetica', sans-serif;
    margin: 0;
    padding: 0;
}


:root {
    --white: #ffffff;
    --main-blue: #0098db;
}

body {
    background-color: var(--white);
    height: 100vh;
    width: 100vw;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    background-color: var(--main-blue);

    width: 100vw;
    height: auto;

    padding: 2rem;
    flex-wrap: wrap;

    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

header a {
    text-decoration: none;
}

header img {
    height: 65px;
    width: 180px;
}

#message-section {

    padding: 2rem;

    margin: auto;
    max-width: 70vw;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    gap: 1rem;

    font-weight: 600;
}

.p-site-name {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;

    padding: 0;
    margin: 0;
}

footer {

    flex-wrap: wrap;
    text-align: center;

    background-color: #ebebeb;
    display: flex;
    justify-content: center;
    align-items: center;

    height: 10vh;
    width: 100vw;
}

footer a {
    text-decoration: none;
    color: var(--main-blue);
}

footer a:hover {
    text-decoration: underline;
}


@media (max-width: 1024px) {
    header {
        padding: 2rem;
        height: auto;
        gap: 1rem;
    }

    header img {
        height: 55px;
        width: auto;
    }

    .p-site-name {
        font-size: 1.6rem;
        text-align: center;
    }

    #message-section {
        max-width: 85vw;
    }
}



@media (max-width: 480px) {
    header {
        padding: 1rem;
    }

    .p-site-name {
        font-size: 1.1rem;
    }

    #message-section {
        padding: 1rem;
   
    }
}


@media (max-width: 768px) {
    body {
        justify-content: flex-start;
    }

    header {
        flex-direction: column;
        padding: 1.5rem;
    }

    header img {
        height: 45px;
    }

    .p-site-name {
        font-size: 1.3rem;
    }

    #message-section {
        max-width: 90vw;
        padding: 1.5rem;
    }
}