/* 

  GENERAL PAGE STYLES 

*/

html, body {
    overflow: hidden;
    height: 100vh;
}

/*

    MAIN

*/

.main.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-size: min(40px, 2.5vw);
}

.main h1 {
    font-size: 1.5em;
    margin-top: .7em;
    margin-bottom: .3em;
    font-weight: 600;
}

.main h2 {
    font-weight: 700;
    font-size: 1.1em;
    margin-top: 1.3em;
    margin-bottom: .2em;
}

.main p {
    text-align: center;
    margin: 1.5em 0 1em 0;
}

.main code {
    font-size: 1.2em;
}

.main a {
    outline: none;
    border: .05em solid #ccc;
    font-size: 1em;
    background-color: transparent;
    padding: .3em .4em;
    border-radius: .2em;
    cursor: pointer;
    transition: border .2s;
    color: inherit;
}

.main a:hover {
    border: .05em solid white;
}

/*
    OVERRIDE
*/

body .footer, footer-component {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}