html, body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
	font-family: sans-serif;
}

body {
    background-image: url(../images/background.jpg);
    background-position: center;
    background-color: black;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    background: rgba(37, 40, 42, 0.5);
}

.logo {
    background-image: url(../images/logo.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    height: 100px;
    width: 500px;
    margin: 10px 0;
}

@media (max-width: 450px) {
  .logo {
    width: 300px;
  }
}

.info {
	color: #FFFFFF;
}