/* COLORS */
:root {
    --grey: #AEB5B8;
    --black: #040507;
    --border: #525252;
    --blackholeBorder: #ffffff14;
}

/* Controles all the buttons */
.btn {
    cursor: none !important;
    position: relative;
    color: var(--clr);
    border: none;
    padding: 0.65rem 1rem;
    font-size: 1.25rem;
    width: auto;
    border-radius: 3.125rem;
    font-weight: 600;
    text-transform: uppercase;
    background: transparent;
    overflow: hidden;
    transition: 0.75s;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;

    /*---BORDER-BTN---*/
    &.border-btn {
        border: 0.063rem solid var(--border);
    }

    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--clr);
        clip-path: circle(0% at 50% 50%);
        -webkit-clip-path: circle(0% at 50% 50%);
        transition: 0.75s;
        z-index: -1;
    }

    &:hover::after {
        clip-path: circle(100% at 50% 50%);
        -webkit-clip-path: circle(100% at 50% 50%);
    }

    &:hover {
        color: var(--black);
        border-color: transparent;
    }
}

html,
body {
    height: 100%;
    margin: 0;
    cursor: none;
}

/* cursor */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
}

.cursor-dot {
    width: 0.4rem;
    height: 0.4rem;
    background-color: white;
}

.cursor-outline {
    width: 1.875rem;
    height: 1.875rem;
    border: 0.1rem solid hsla(0, 0%, 100%, 0.5);
}

/* Main body */
body {
    background-color: var(--black);
    color: var(--grey);
    font-family: "Outfit", Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#pfp {
    margin-top: 1rem;
    border: 0.15rem solid var(--border);
    border-radius: 2rem;
    width: 10rem;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* main section */
main {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;

    h1 {
        font-family: "Rouge Script", Arial, Helvetica, sans-serif;
        font-size: 3.5rem;
        margin: 0rem;
        padding-bottom: 1rem;
        border-bottom: var(--border) solid 0.063rem;
    }

    p {
        font-family: "Outfit", Arial, Helvetica, sans-serif;
        font-size: 1.5rem;
        margin: 0;
        margin-top: 0.65rem;
        margin-bottom: 2rem;
    }

    #btn-div {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 30rem;
        gap: 1rem;

        i {
            margin-right: 0.5rem;
            font-size: 1em;
            vertical-align: middle;
        }
    }
}

/* footer */
footer {
    font-family: "Outfit", Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    margin-top: 2rem;
    border-top: 0.063rem solid var(--border);
}

/* ------------------------------ */
/* MOBILE (up to ~600px width)    */
/* ------------------------------ */
@media (max-width: 600px) {

    #pfp {
        width: 7.5rem;
        border-radius: 1.5rem;
    }

    main {
        h1 {
            font-size: 2.5rem;
            padding-bottom: 0.5rem;
        }

        p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }
    }

    #btn-div {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
        max-width: 20rem;
        flex: 1;

        .btn {
            flex: 1 1 auto;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(1.25rem, 8vw, 2rem);
            padding: 0.75rem 1rem;

            &,
            &::after {
                transition: 0.35s;
            }
        }
    }

    footer {
        display: flex;
        margin-top: 2rem;
        font-size: 1rem;
        padding: 0.5rem 0rem;
        width: 100%;
    }
}

@media (hover: none) and (pointer: coarse) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    body {
        cursor: default;
    }
}