@import url("https://use.typekit.net/ryb2ryp.css");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

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

html {
    background-color: black;
    background-image: url("926a44c38c195bdabb29bea6bbdc1724.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    font-family: adobe-gothic-std, sans-serif;
}

h1 {
    font-size: 2em;
}

p {
    font-size: 1em;
}


body {
    height: 100vh;
}

.page-content {
    display: grid;
    grid-template-areas: "header"
                         "main"
                         "footer";
height: 100%;
}

header {
    grid-area: header;
    margin: 20px;
}

main {
    grid-area: main;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    grid-area: footer;
    display: flex;
    flex-direction:column-reverse;
}

a, a:visited {
    color: white;
    text-decoration: none;
    font-family: monospace;
    display: inline-block;
    margin: 10px;
    padding: 2px;
    background-color: black;
}

a:hover, a:active {
    text-decoration: underline;
}

@media screen and (max-width: 769px){
    html {
        background-size: contain;
        background-position: center;
    }
    


}