* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, Arial, sans-serif;
}

:root {
    --blue: #0075c9;
    --blue-light: #66bfff;
    --green: #bbbb14;
    --orange: #f38b00;
    --red: #c3002f;
    --white: #ffffff;
}

#page-container {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100svw;
    height: 100svh;
    z-index: -1;
    background-image: url('https://linncounty-gis.maps.arcgis.com/sharing/rest/content/items/56b13ce510614866b6c9658f6777a708/data');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#parent-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 100%;
    min-height: 100%;
    background: rgba(30,35,50,0.5);
}

/* extra small devices */
@media (max-width: 575px){
    #message-container {
        flex-direction: column;
        gap: 30px;
        width: 90%;
        padding: 30px;
    }

    #logo {
        height: 75px;
    }

    #header-text {
        font-size: 1.2rem;
    }

    #notification-container {
        gap: 10px;
    }

    #text-container {
        gap: 25px;
        font-size: 0.875rem;
    }

    #link-container {
        gap: 0px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .link-text-container {
        gap: 5px;
    }

    .link-image {
        display: none;
    }

    .text {
        line-height: 1.5;
    }
}

/* small devices */
@media (min-width: 576px) and (max-width: 767px){
    #message-container {
        flex-direction: column;
        gap: 30px;
        width: 90%;
        padding: 30px;
    }

    #logo {
        height: 90px;
    }

    #header-text {
        font-size: 1.3rem;
    }

    #notification-container {
        gap: 10px;
    }

    #text-container {
        gap: 25px;
        font-size: 0.875rem;
    }

    #link-container {
        gap: 2px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .link-text-container {
        gap: 5px;
    }

    .link-image {
        display: none;
    }

    .text {
        line-height: 1.5;
    }
}

/* medium devices */
@media (min-width: 768px) and (max-width: 991px) {
    #message-container {
        flex-direction: column;
        gap: 40px;
        width: 85%;
        padding: 40px;
    }

    #logo {
        height: 100px;
    }

    #header-text {
        font-size: 1.5rem;
    }

    #notification-container {
        gap: 7px;
    }

    #text-container {
        gap: 25px;
        font-size: 0.875rem;
    }

    #link-container {
        gap: 7px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .link-text-container {
        gap: 7px;
    }

    .link-image {
        height: 10px;
    }

    .text {
        line-height: 1.5;
    }
}

/* large devices */
@media (min-width: 992px) and (max-width: 1199px) {
    #message-container {
        flex-direction: column;
        gap: 40px;
        width: 70%;
        padding: 40px;
    }

    #logo {
        height: 100px;
    }

    #header-text {
        font-size: 1.5rem;
    }

    #notification-container {
        gap: 7px;
    }

    #text-container {
        gap: 25px;
        font-size: 0.875rem;
    }

    #link-container {
        gap: 7px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .link-text-container {
        gap: 7px;
    }

    .link-image {
        height: 10px;
    }
}

/* extra large devices */
@media (min-width: 1200px) and (max-width: 1439px) {
    #message-container {
        flex-direction: row;
        gap: 40px;
        width: 70%;
        padding: 40px;
    }

    #logo {
        height: 150px;
    }

    #header-text {
        font-size: 1.5rem;
    }

    #notification-container {
        gap: 7px;
    }

    #text-container {
        font-size: 0.875rem;
    }

    #link-container {
        gap: 7px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .link-text-container {
        gap: 7px;
    }

    .link-image {
        height: 10px;
    }
}

/* largest devices */
@media (min-width: 1440px) {
    #message-container {
        flex-direction: row;
        gap: 50px;
        width: 65%;
        padding: 50px;
    }

    #logo {
        height: 200px;
    }

    #header-text {
        font-size: 2rem;
        font-weight: 600;
    }

    #notification-container {
        gap: 10px;
    }

    #link-container {
        gap: 10px;
        flex-direction: row;
    }

    .link-text-container {
        gap: 10px;
    }

    .link-image {
        height: 12px;
    }
}

#message-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: var(--white);
    background-color: rgba(30,35,50,0.7)
}

#logo-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /*background: darkorange;*/
}

#logo {
    width: auto;
}

#text-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    /*background: darkmagenta;*/
}

#header-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /*background: darkgoldenrod;*/
}

#header-text {
    font-weight: 600;
}

#notification-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    /*background: darkblue;*/
}

#link-container {
    display: flex;
    flex-wrap: wrap;
    /*background: darkseagreen;*/
}

.link-text-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    /*background: darkred;*/
}

.link {
    color: var(--blue-light);
    text-decoration: none;
}

.link-image-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /*background: darkblue;*/
}

.link-image {
    width: auto;
}

.text {
    font-weight: normal;
    /*background: darkolivegreen;*/
}