html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-image: url("https://ca.nfs.pub/nyaone/214c22a9-c68f-43f8-a66f-843c664e980e.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

main {
    text-align: center;
    padding: 5rem 4rem;
    background-color: rgba(0, 0, 0, .3);
    border-radius: 2rem;
    backdrop-filter: blur(1.8rem);
    position: relative;

    color: white;
}

main img.logo {
    width: 8rem;
    height: 8rem;
    position: absolute;
    top: -4rem;
    left: 0;
    right: 0;
    margin: auto;
}

main .title {
    margin-bottom: 2rem;
}

main .title span {
    color: #62b6e7;
}

main p {
    font-size: 1.2rem;
}

main a {
    text-decoration: none;
    color: #62b6e7;
    transition: color .3s;
}

main a:hover {
    color: #8cc5e5;
}
