* {
    transition: all 0.2s ease;
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    text-align: center;
    font-family: sans-serif;
    background-image: url('images/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    color: white;
    text-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

main a,
main img {
    box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.3);
}

main {
    width: 100%;
    max-width: 24rem;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(0.625rem);
    -webkit-backdrop-filter: blur(0.625rem);
    border: 0.0625rem solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.2);
}

main img {
    height: 10rem;
    width: 10rem;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

h1 {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 2rem;
}

h2 {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

main a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    width: 100%;
    max-width: 15rem;
    border-radius: 0.75rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border: 0.0625rem solid rgba(255, 255, 255, 0.3);
    text-align: center;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

main a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

main a i {
    font-size: 1.1rem;
    width: 1.25rem;
    text-align: center;
}

footer {
    position: fixed;
    bottom: 0.75rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    z-index: 10;
}

main+footer a,
footer a {
    display: inline !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.7rem !important;
    font-weight: 400 !important;
    text-decoration: underline !important;
}

main+footer a:hover,
footer a:hover {
    color: white !important;
    background: none !important;
    transform: scale(1) !important;
}

@media (max-width: 30rem) {
    body {
        justify-content: flex-start;
    }

    main {
        padding: 2rem 1.25rem;
    }

    footer {
        position: static;
        margin-top: 2rem;
    }
}