html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

body {
    display: flex;
    height: 100%;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 0;
    width: 0;
    overflow: hidden;
    padding: 200px 0 0 300px;
    background-image: url(../img/logo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 0 auto;
}
