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

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100dvh;
    /*overflow: hidden;*/

    a {
        text-decoration: none;
    }
}

::-webkit-scrollbar {
    display: none;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1% 0;

    h1 {
        font-size: 3em;

        /*@media (orientation: portrait) {*/
        /*    font-size: 5em;*/
        /*}*/
    }

    @media (orientation: portrait) {
        padding: 2% 0;
    }
}

footer {
    padding: 1%;

    @media (orientation: portrait) {
        padding: 2%;
    }
}