@import url('https://fonts.googleapis.com/css?family=Roboto|Ubuntu');

* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: whitesmoke;
}

body {
    height: 100vh;
    background-color: #090D15;
}

.header {
    height: 5vh;
    min-height: 3rem;
    width: 100vw;
    background-color: #0E131F;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header img {
    height: 50%;
    margin: 0 1rem;
}

a.back-button {
    text-decoration: none;
    margin-left: .5rem;
}

a.back-button div {
    padding: .5rem;
    width: 10rem;
    border-radius: .1rem;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    background-color: #00614C;
    transition-duration: .2s;
}

a.back-button div:hover {
    background-color: #009474;
    color: white;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 3vh;
    background-color: #0E131F;
    display: flex;
    justify-content: center;
}

.footer * {
    margin: .5rem .5rem;
    font-size: .9rem;
    font-family: 'Ubuntu', sans-serif;
    filter: brightness(85%);
}

iframe {
    width: 100vw;
    min-height: 91vh;
    background-color: white;
}