body {
    font-size: 1rem;
    text-align: center;
    margin: 30px 20px 20px 20px;
    max-width: 100%;
    background: var(--bgc);
}

h1,
a {
    color: var(--primary-color);
    font-weight: bolder;
    text-decoration: none;
}

.large-text {
    font-size: 2rem;
    width: 90%;
    margin: 20px auto;
    background: linear-gradient(to right, var(--primary-color), rgb(255, 73, 255));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
}

button {
    width: 85%;
    height: 45px;
    font: inherit;
    background-color: var(--primary-color);
    border: 0;
    border-radius: 15px;
    color: white;
    cursor: pointer;
    margin: 20px auto 40px auto;
}

button:hover,
button:active,
button:focus {
    transition: all ease 0.5s;
    transform: translateY(5px);
    box-shadow: 0 4px 20px blue;
}

button a {
    text-decoration: none;
    color: white;
}

footer {
    text-align: center;
    background-color: var(--off-bg);
    border: thin solid gray;
    border-radius: 20px;
    font-size: 11.5px;
    width: 70%;
    position: static;
    bottom: 35px;
    left: 15%;
    margin: auto;
}

@media screen and (min-width: 760px) {
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 100vh;
    }

    .large-text {
        width: 80%;
    }

    button {
        width: 450px;
    }
}