body {
    margin: 0;
    font-family: Georgia, serif, "Times New Roman", Times;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: black;
        color: #bbbbbb;
    }
}
.darkmode {
    background-color: black;
    color: #bbbbbb;
}
.site {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 120px;
}

.hello,
.greeting,
.invite {
    font-size: 2.5rem;
}

.links {
    display: flex;
    flex-direction: row;
}

@media (max-width: 768px) {
    .links {
        flex-direction: column;
    }
    .links > a {
        margin-top: 24px;
    }
}

a,
a:hover,
a:active {
    margin-right: 2em;
}

a {
    /* background-color: green;
    box-shadow: 0 5px 0 darkgreen;
    color: white; */
    padding: 1em 1.5em;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}

.pushable {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
}
.shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: #006400;
    will-change: transform;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}
.edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(
        to left,
        hsl(340deg 100% 16%) 0%,
        hsl(340deg 100% 32%) 8%,
        hsl(340deg 100% 32%) 92%,
        hsl(340deg 100% 16%) 100%
    );
}
.front {
    display: block;
    position: relative;
    padding: 12px 42px;
    border-radius: 12px;
    font-size: 1.25rem;
    color: white;
    background: #008000;
    will-change: transform;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}
.pushable:hover {
    filter: brightness(110%);
}
.pushable:hover .front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}
.pushable:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
}
.pushable:hover .shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}
.pushable:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}
.pushable:focus:not(:focus-visible) {
    outline: none;
}

@media screen and (max-width: 630px) {
    .site {
        padding: 120px 70px;
    }
}

@media screen and (max-width: 550px) {
    .site {
        padding: 120px 50px;
    }
}

@media screen and (max-width: 480px) {
    .site {
        padding: 70px 50px;
    }
}

@media screen and (max-width: 1024px) {
    .hello,
    .greeting,
    .invite {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 768px) {
    .hello,
    .greeting,
    .invite {
        font-size: 2rem;
    }
}

@media screen and (max-width: 550px) {
    .hello,
    .greeting,
    .invite {
        font-size: 1.75rem;
    }
}

.greeting {
    max-width: 800px;
}
