:root {
    --background: #111111;
    --text: whitesmoke;
    --link-text: white;
    --link: #666666;
    --headline-fonts: "Vampiro One", system-ui;
    --text-fonts: "Alegreya", serif;
}

.vampiro-one-regular {
    font-family: "Vampiro One", system-ui;
    font-weight: 400;
    font-style: normal;
}

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

body {
    background-color: var(--background);
    color: var(--text);
}

.hero {
    min-width: 1024px;
}

.hero img {
    width: 100%;
}

.container {
    min-width: 1024px;
    width: 100%;
}

.container img {
    width: 100%;
}

.hero::after {
    content: "Citilogue";
    position: absolute;
    font-family: var(--headline-fonts);
    top: 35px;
    white-space: pre;
    left: 60px;
    font-weight: bold;
    font-size: 75px;
    border: 0;
}

.overlay-text {
    position: relative;
    right: 50px;
    bottom: 5em;
    font-family: var(--text-fonts);
    font-size: 36px;
    text-align: right;
}

.overlay-text a {
    color: var(--text);
    text-decoration: none;
}

.overlay-text a:hover {
    color: var(--text);
    text-decoration: underline;
}

.stanza {
    margin: 25px;
    margin-left: 100px;
    font-size: 28px;
    inline-size: 60%;
    line-height: 2em;
    font-family: var(--text-fonts);
}

footer {
    font-family: var(--text-fonts);
    font-size: 16px;
    margin: 50px auto;
    width: 30%;
    text-align: center;
    border-top: 2px solid whitesmoke;
    padding-top: 25px;
}

button {
    display: block;
    width: 60%;
    height: 4em;
    font-family: var(--text-fonts);
    font-size: 2em;
    text-transform: uppercase;
    margin: 2em auto;
    background-color: var(--background);
    color: var(--text);
    border: 2px dotted var(--text);
    border-radius: 10px;
}

button:hover {
    background-color: var(--link);
    color: var(--link-text);
}
