@font-face {
  font-family: 'numbers';
  src: url('numbers.woff2') format('woff2'), /* Super Modern Browsers */
       url('numbers.woff') format('woff'), /* Pretty Modern Browsers */
       url('numbers.ttf')  format('truetype'); /* Safari, Android, iOS */
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: numbers, sans-serif;
	font-weight: 700;
    color: #FFFFFF;
    background-color: #F80000;
	background: url('bg.svg');
	background-size: cover;
}

:fullscreen {
    background-color: #F80000;
	background: url('bg.svg');
	background-size: cover;
}

div {
    text-align: center;
}

div.fullscreen {
    display: flex;
    flex-direction: column;
    padding: 10vh;
}

h1 {
    font-size: 8vh;
    font-weight: 300;
    line-height: 7vh;
    margin-top: 0;
    padding-top: 3rem;
}

ul {
	margin-left: 18vw;
	margin-top: 20vh;
    padding: 0;
}

li {
    font-size: 13vh;
    font-weight: 700;
    line-height: 16vh;
    list-style: none;
    width: 30vw;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
}

li div {
    width: 11vh;
}

.logo {
    width: 20vw;
    position: absolute;
    bottom: 5vh;
    left: 5vh;
}