:root {
    --background-color: #000;
    --color-primary-text: #fff;
    --pink: #f51cff;
    --yellow: #ffed00;
    --font-sans:
        "Mona Sans", sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial;
    --content-width: 1080px;
}

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

body {
    min-height: 100vh;
    background-color: var(--background-color);
    color: var(--color-primary-text);
    font-family: var(--font-sans);
    line-height: 1.5;
    text-rendering: optimizespeed;
    padding: 1rem;
}

img,
picture {
    display: block;
    max-width: 100%;
}

h1 {
    color: var(--yellow);
    text-shadow: -2px -2px 0px var(--pink);
    padding-bottom: 2rem;
}

h2 {
    color: var(--pink);
    padding-bottom: 1rem;
}

a {
    color: var(--pink);
    text-decoration: none;
    font-weight: bold;
}

.main-container {
    max-width: 1200px;
    min-height: 90vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    padding: 2rem;
    height: 85%;
}

button:hover {
    cursor: pointer;
    opacity: .90;
}

button:active {
    opacity: inherit;
}

.btn {
    cursor: pointer;
    justify-content: center;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.004em;
    line-height: 1.5;
    padding: 0.8em 1.4em;
    border-style: none;
    border-color: currentcolor;
    -webkit-transition: transform 0.5s ease 0s;
    -moz-transition: transform 0.5s ease 0s;
    -o-transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
}

.subscribe-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 53px;
    margin: 1rem 0 3rem 0;
}

.subscribe_button {
    background: var(--pink);
    color: var(--color-primary-text);
    height: 99%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.input-subscribe {
    width: 25rem;
    height: 100%;
    font-weight: 600;
    font-size: 17px;
    background-color: #222;
    color: var(--color-primary-text);
    padding: 0.8em 1.4em;
    border-width: 0px;
    border-style: none;
    border-color: #555;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    outline-color: currentcolor;
    font-size: inherit;
    inset: 0;
    letter-spacing: inherit;
    line-height: 1.1;
    outline: none;
    outline-color: currentcolor;
    transition: 0.3s ease-in-out;
}
.input-subscribe:active, .input-subscribe:focus {
    border-color: #777;
    border-style: solid;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
}

.foot {
    border-top: 3px solid var(--pink);
    padding-top: 2rem;
    margin: 0 20rem 0 20rem;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.copyright {
    text-align: center;
    color: var(--yellow);
}

.foot-links {
    padding-top: 1rem;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: right;
}

.foot-link {
    padding-right: 1rem;
}

.accent-y {
    color: var(--yellow);
}

.accent-p {
    color: var(--pink);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
}
