html, body {
    min-height: 100vh;
    min-height: 100dvh;
    margin:0;
    padding:0;
}
body {
    display:grid;
    grid-template-rows: 1fr auto;
    justify-items: center;
    align-items: center;
    gap:2rem;
}

body {
    font-size:1.4375rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a {
    text-decoration: none;
    color:inherit;
}

body {
    background-image: url(../images/bgdesktop.svg);
    background-size: 100% 100%;
}

#logo {
    width:29.625rem;
    max-width: 75%;
}

#kkbutton {
    position:absolute;
    top:1.5rem;
    right:3rem;
    width: 10rem;
}

.address {
    margin:0 2rem 1.5rem 2rem;
    text-align: center;
    color:white;
}

.mobileonly {
    display:none;
}

/*
@media (max-width:1100px) {
    html {
        font-size:80%;
    }
}
*/

@media (max-width:1023px) {
    .desktoponly {
        display:none;
    }
    .mobileonly {
        display:block;
    }

    body {
        grid-template-rows: auto 1fr auto;
        font-size: 1.1875rem;

        background-image: url(../images/bgmobile.svg);
    }
    #kkbutton {
        position:static;
        width: 7.5rem;
        margin-top:1rem;
        margin-right: 1rem;
        justify-self: end;
    }
}
/*
@media (max-width:350px) {
    html {
        font-size:70%;
    }
}
*/
