body {
    height: 100%;
    margin: 0;
    background-color: #1b1b1b;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1{
    text-align: center;
    font-family: "Rammetto One", serif;
    font-size: 100px;
    text-shadow: 2px 2px 0 #000000,
                 -2px -2px 0 #000000,
                 2px -2px 0 #000000,
                 -2px 2px 0 #000000;
}

a{
    text-decoration: none;
    color: #e6e6e6;
}

img{
    position: absolute;
    width: 100%;
    height: auto;
    filter: blur(15px);
    z-index: -1;
}