html{
    height: 100%;
}

body{
    min-height: 100%;
    color: white;
    background-color: #062f4f;
    font-family: Roboto, Arial, sans-serif;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

img{
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.container{
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo{
    max-height: 100%;
    margin: 8vh 1rem;
}

.logo img{
    max-height: 100%;
}

.banner{
    position: absolute;
    left: 0;
    top: 0;
    max-width: 50vw;
}

.footer{
    font-size: 1.375rem;
    text-transform: uppercase;
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    padding-bottom: 5vh;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}