* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yellow: #F7E843;
    --black: #111111;
	--circle-size: 60rem;
	--circle-color: rgba(238, 232, 246, 0.5);
	
    --lilac-glass: linear-gradient(
    to bottom right,
    rgba(238, 232, 246, 0.70) 0%,
    rgba(38, 2, 246, 0.05) 55%,
    rgba(238, 232, 26, 0.02) 100%
  );
}



html {

    scrollbar-width: none; /* Firefox */

}

body {

    -ms-overflow-style: none; /* Older Edge/IE */

}

body::-webkit-scrollbar {

    display: none; /* Chrome, Safari, newer Edge */

}


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

body {
    background: var(--yellow);
    color: var(--black);
    font-family: "Fira Sans", sans-serif;

    display: flex;
    flex-direction: column;
    padding: 40px;
}
body::after {
    content: "";

    position: fixed;

    width: var(--circle-size);
    height: var(--circle-size);

    right: calc(var(--circle-size) / -2);
    bottom: calc(var(--circle-size) / -2);

    border-radius: 50%;

    background: var(--lilac-glass);

    pointer-events: none;

    z-index: 0;
}
	
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
	padding-bottom:60px;
}

.logo img {

    width: clamp(10rem, 22vw, 22rem);

    height: auto;
background: rgba(0, 0, 0, 0.50);
    display: block;

}

.tagline {
    font-size: .85rem;
    opacity: .55;
	font-weight: 400;
}

main {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    max-width: 1100px;
}

#message {
    font-size: clamp(3rem, 9vw, 18rem);
    line-height: .95;
    letter-spacing: -.03em;
    font-weight: 900;

    max-width: 900px;

    transition:
        opacity .2s ease,
        transform .2s ease;
	z-index: 1;
}

.fade {
    opacity: 0;
    transform: translateY(10px);
}

button {
    position: fixed;
    right: 10vw;
    bottom: 16vh;

    background: none;
    border: none;

    font: inherit;
    font-size: 2rem;
    font-weight: 600;

    cursor: pointer;
    color: var(--black);

    opacity: .65;

    transition:
        opacity .2s ease,
        transform .2s ease;
	
	z-index: 1;
}

button:hover {
    opacity: 1;
    transform: translateX(6px);
}

button::after {
    content: " →";
}

@media (max-width: 700px) {

    body {
        padding: 24px;
        padding-bottom: 100px;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    #message {
        font-size: clamp(3rem, 25vw, 5rem);
    }

    button {
        top: auto;
        right: 0;
        bottom: 0;

        width: 100%;
        min-height: 72px;

        padding: 0 24px;

        display: flex;
        align-items: center;
        justify-content: flex-end;
        color: var(--black);

        opacity: 1;

        transform: none;
    }

    button:hover {
        transform: none;
    }
}