*{
    margin: 0;
}

html{
    height: 100%;
}

body{
    height: 100%;
    width: 100%;
    background-color: #FBF0E4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Shadows Into Light', cursive;
}

img{
    width: 400px;
}

span{
    font-size: 60px;
    margin: 30px;
    text-align: center;
}

a{
    color: rgba(0, 0, 0, 0.493);
    position: absolute;
    bottom: 0;
    margin: 5px;
    font-size: 15px;
}

@media only screen and (max-width: 768px) {
    img{
        width: 250px
    }

    span{
        font-size: 40px;
        max-width: 300px;
    }
}