@media (max-width: 500px) {
    html {
        font-size: 0.8em;
    }
}
body {
    margin: 0;
    font-family: Lato, Helvetica, sans-serif;
    -moz-osx-font-smoothing: grayscale;
}
body#landing-page {
    background-image: url(background-img.jpg);
    background-position: center bottom;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
article {
    margin: 0 auto;
    padding: 0 1rem 0 2rem;
    max-width: 30em;
}
article h1, article h2, article h3 {
    margin-left: -1rem;
}
main {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 2rem 3rem;
    background-image: linear-gradient(to top,
        rgba(0, 0, 0, 0.6) 20%, transparent 70%);
}
main h2 {
    color: #FFF;
    text-shadow: 0 0 0.5rem black;
    margin: 0 1.5rem 0 0;
    font-size: calc(4.5vw - 0.2rem);
}
@media (min-width: 1500px) {
    main h2 {
        font-size: calc(67.5px - 0.2rem);
    }
}
@media (max-width: 1000px) {
    main h2 {
        font-size: 3.3rem;
        max-width: 10em;
        text-align: right;
    }
}
@media (max-width: 750px) {
    main h2 {
        font-size: 2.5rem;
    }
    main {
        padding: 1rem 2rem;
    }
}
@media (max-width: 500px) {
    main h2 {
        margin: 0 0 1.5rem 0;
        text-align: left;
    }
    main {
        padding: 0.75rem 1.5rem;
        flex-direction: column;
        font-size: 2rem;
        align-items: flex-start;
    }
}
.product-img {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1), 0 0.2em 0.5rem rgba(0, 0, 0, 0.2);
    margin: 0.3rem;
    padding: 5px;
    background-color: black;
    border-radius: 0.2rem;
    flex-shrink: 0;
}
header {
    flex-grow: 1;
    background-image: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.2), transparent 7rem);
}
header #logolink {
    display: inline-block;
    height: 7em;
    width: 12em;
    margin-left: 6px;
    background-image: url(darkbg.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
header .humongous-button {
    float: right;
    margin: 2em 2em 0 0;
}

section article {
    flex-grow: 1;
    align-self: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: #FFF;
    text-shadow: 0 0 2px black;
    background-color: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.6);
    padding: 0 1rem 0.5rem;
    line-height: 2em;
}
@media (max-width: 500px) {
    footer > *:not(i) {
        flex-grow: 1;
        text-align: center;
        margin: 0 1rem;
    }
    footer > i.bullet:first-of-type {
        display: none;
    }
}
footer a {
    color: rgba(255, 255, 255, 0.6);
}
footer a i {
    margin-left: 0.2rem;
}
footer i.bullet {
    margin: 0 0.5rem;
}
footer i.bullet:before {
    content: "•";
}
.humongous-button {
    display: inline-block;
    text-decoration: none;
    box-shadow: inset 0 -4em 2em -10em transparent,
                inset 0 0 0 0.3em #FFFFFF;
    transition: box-shadow 0.2s, color 0.2s, text-shadow 0.2s;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    font-family: Lato, Helvetica, sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    margin: 1rem auto;
    padding: 1em;
    border-radius: 0.2rem;
}
.humongous-button:hover,
.humongous-button:focus,
.humongous-button:active {
    box-shadow: inset 0 -4em 2em 2em #FFFFFF,
                inset 0 0 0 2em #FFFFFF;
    text-shadow: none;
    color: #222222;
}
.humongous-button:active {
    box-shadow: inset 0 -5em 2em 2em #CCCCCC,
                inset 0 0 0 2em #FFFFFF;
}
