main {
    height: 100vh;
    max-width: 800px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}

banner {
    display: flex;
    flex-direction: row;
}


herotext {
    padding-left: 20px;
    font-family: monospace;
    font-size: 1.2em;
}

herotext h1, herotext p {
    margin: 10px 0
}


.logoPlaceholder {
    fill: rgba(75, 40, 19, 0.436);
    stroke: rgb(10, 93, 23);
    stroke-width: 3px;
}

@media screen and (max-width: 600px) {
    main {
        flex-direction: column;
    }
    .logoPlaceholder {
        padding-bottom: 20px;
    }
}