@import url('css/fonts.css');

#footer {
    background-color: #033003;
}

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

.logo-and-warning-container {
    display: flex;
    flex-direction: row;
}

.warning-container {
    width: 70%;
    margin: auto;
}

.logo-container {
    Align-items: center;
    margin: auto;
}

@media only screen and (max-width: 600px) {
    .logo-and-warning-container {
        flex-direction: column;
    }

    .warning-container {
        width: 100%;
    }
    .logo-container{
        margin-bottom: 15px;
    }
}

@font-face {
    font-family: "Public Sans";
    font-style: "normal";
    font-weight: "normal";
    src: url('vt-ridp/PublicSans-VariableFont_wght.ttf');
}

html {
    
    font-size: 14pt;
    height: 100%;
}

body {
    color: rgb(0,33,7);
    font-family: "Public Sans", sans-serif;
    font-style: normal;
    font-weight: normal;
    line-height: 1.25;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#main-nav {
    background-color: rgb(239,243,245);
    filter: drop-shadow(5px 3px 6px rgba(0, 0, 0, 0.161));
    padding: 0.5em 0;
    z-index: 9999;
}

#main-nav a {
    color: inherit;
    text-decoration: none;
}

#main-content  {
    flex: 1 0 auto;
}