* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
    display: flex;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    align-items: center;
    justify-content: center;
    background-color: black;
    font-family: 'Roboto', sans-serif;
    color: #f0f0f0;
}

#main-container {
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
}

.standalone-logo {
    display: flex;
    height: 90%;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.standalone-logo img {
    max-width: 1037px;
    width: 33vw;
    height: auto;
}

.navbar {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    background: none;
}

.navbar-link {
  margin: 1em;
}

.navbar-link A {
  margin: 1em;
  text-decoration: none;
  color: #ffffff ! important;
}

.navbar-link A:visited {
  color: #ffffff ! important;
}


#copyright {
    display: flex;
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-transform: lowercase;
    justify-content: right;
    align-items: baseline;
    font-size: 0.5em;
    padding-right: 1.5em;
}
