@import url('https://fonts.googleapis.com/css?family=Nunito&display=swap');
*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
}

html, body {
    font-size: 62.5%;
    height: 100%;
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
}

.scene {
    position: relative;
    height: 100%;
    background: #1d1f20;
    padding: 20rem;
    text-align: center;
}

h1 {
    position: relative;
    font-size: 8rem;
    text-transform: uppercase;
    color: #fff;
    z-index: 10;
}

.magic {
    z-index: 5;
    position: absolute;
    top: calc(50% - 10rem);
    left: calc(50% - 10rem);
    width: 20rem;
    height: 20rem;
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/hover-reveal.jpg") 50% 50% no-repeat fixed;
    background-size: cover;
    border-radius: 50%;
}

.check-out {
    z-index: 100;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #fff;
}

.check-out a {
    color: #ffaaaa;
}