﻿
#notFound {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background-image: url("/assets-landing/images/clinyo/404_bg.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 99999999999999999999999;

    color: var(--white);
}

#notFound h1 {
    margin: 0;
    padding: 0;

    font-size: 6rem;
}

#notFound h2 {
    margin: 0;
    padding: 0;
}

#notFound a {
    margin-top: 20px;
    display: inline-block;

    border: 2px solid rgba(255, 255, 255, .3);
    padding: 8px 18px;
    border-radius: 55px;

    text-transform: uppercase;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--white);

    transition: color 300ms ease,
                background-color 500ms ease;

                cursor: pointer;
}

#notFound a:hover {
    background-color: var(--white);
    color: var(--black);
}
