html, body {
    margin: 0;
    padding: 0;
    font-family: 'Bungee Hairline', cursive;
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    background: white;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h1 {
   padding: 2rem;
   margin: 0;
   display: flex;
   align-items: center;
   justify-content: center;
}

img {
    border: none;
    max-height: 75%;
    max-width: 75%;
}
