:root {
    font-family: "Open sans";
    color: black;
    font-size: calc(.8rem + .2vw);
}

::selection {
    background-color: #4300c4;
    color: #F8F3F3;
}

html,
body {
    margin: 0;
    background: #222;
}

body {
    background-image: url('content/images/comic-interior-minimalist.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content:center;
    position: relative;
    min-height: 100vh;
    padding:0vw 1vw;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    line-height: 1.5em;
}

a {
    text-decoration: none;
    color: black;
}

ul {
    margin:0;
}

main {
    text-align: center;
    padding: 0vh;
    max-width: 60rem;
    width: 95%;
    display: flex;
    flex-direction: column;
    margin-bottom:1rem;
}

@media screen and (max-width: 1200px) {
    main {
        width: 100%;
    }
}

.title-area {
    font-size: calc(1rem + 1.5vw);
    padding: 1rem;
    text-align: left;
    margin-top:1rem;
    background:white;
    box-shadow: .4rem .4rem 1rem 0rem rgba(0, 0, 0, 0.5);
    max-width: max-content;
}

.title-area h1 {
    font-size: 1em;
}

.title-area p {
    font-size: .5em;
    font-weight: bold;
}

h1 span {
    font-size: .5rem;
}

h2 {
    font-size: 1.2em;
}

.description {
    background: white;
    color: black;
    text-align: left;
    font-weight: 500;
    padding: 1em;
    left: 50%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: flex-start;
    box-shadow: .4rem .4rem 1rem 0rem rgba(0, 0, 0, 0.5);
    margin-top:.5rem;
}

.description h2 {
    font-weight: 900;
}

.button {
    max-width: max-content;
    background: #4300c4;
    color: white;
    font-weight: bold;
    padding: .5em .8em;
    margin-top: .5em;
    align-self: flex-end;
}

footer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 1rem;
    position:absolute;
    bottom: 0;
    right: 0;
}

footer a {
    color: #4300c4;
    transition: .25s;
    font-weight:700
}

footer a:hover {
    filter: opacity(50%);
}

@media screen and (max-width: 1200px) {
    footer {
        position: relative;
        align-self: center;
    }

    .title-area {
        max-width: 100%;
    }
}