@charset "UTF-8";
html{
    height: 100%;
    font-size: 62.5%;
}
body {
    height: 100%;
    min-height: 100%;
    background-color: black;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 62.5%;
    color: whitesmoke;
    line-height: 1.1rem;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: whitesmoke;
}
.wrapper {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
    font-size: 1.7rem;
    line-height: 1.2em;
    height: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-container {
    background-color: rgba(51, 51, 51, .6);
    padding: 4rem;
}
#header{
    border-bottom: 4px solid red;
    padding-bottom: .5rem;
}
#header #name{
    font-size: 3.5rem;
    line-height: 1.2em;
}
#logo{
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}
#logo img{
    height: 25rem;
    margin-left: 1rem;
    margin-right: 1rem;
}