*{
    margin: 0;
    padding: 0;
}

body{
    background-color: black;
    font-family: "Pixelify Sans", sans-serif;
}

.wrapper{
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
}

.header{
    color: yellow;
    text-align: center;

}

h1{
    margin: 10px 0;
    font-size: 46px;
}


.start{
    color: brown;
    font-size: 76px;
    width: 200px;
    margin: 20vh auto;
    text-align: center;
    font-weight: 900;
    transition: all ease-in-out 1s;
    cursor: pointer;
    text-decoration: none;
}

.start:hover{
    transform: scale(1.2);
    text-shadow: 0.2rem 0.2rem 0 #ffffff;
    transition: all ease-in-out 1s;
}

footer{
    color: white;
    position: absolute;
    font-size: 3vw;
    bottom: 3vw;
    left: 40vw;
}