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

html, body {
    background: #090909;
    font-family: "Overpass", sans-serif;
}

header {
    align-items: center;
    background: #181818;
    color: white;
    display: flex;
    height: 4rem;
    /*justify-content: center;*/
    padding: 0 1rem 0 1rem;
    position: relative;
    width: 100%;

    h1 {
        font-size: 1rem;
    }

    img.title {
        height: 3rem;
    }

    @media (max-width: 600px) {
        img.title {
            height: 2rem;
        }

    }

    img.logo {
        height: 4rem;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        top: 0.5rem;
    }
}

main {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 6rem);
    padding: 1rem
}

footer {
    align-items: center;
    background: #181818;
    color: white;
    display: flex;
    height: 2rem;
    justify-content: center;
}