
header {
    background-color: transparent;
    margin-top: 0;
    padding: 0;
}

h1 {
    font-size: 32px;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-template-rows: auto auto;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#home-screen {
    position: relative;
    margin: 0;
    display: grid;
    justify-items: center;
}

#home-screen menu {
    position: absolute;
    top: 13%;
    left: 15%;
}

#home-screen a {
    display: flex;
    width: 100px;
    flex-direction: column;
    align-items: center;
}

#home-screen-icon {
    width: 10vw;
    min-width: 40px;
    max-width: 60px;
}

#home-screen p {
    color: white;
    padding: 0;
    width: 100px;
    text-align: center;
    font-size: 13px;
}

#background-img {
    max-height: 90vh;
    width: auto;
    max-width: 90%;
}

@media only screen and (orientation: landscape) {
    body {
        overflow-y: scroll;
    }

    #background-img {
        width: 50vw;
        max-width: none;
        max-height: none;
    }
}

/* Override for desktop devices */
.desktop-landscape {
    overflow: hidden;
}

.desktop-landscape #background-img {
    max-height: 90vh;
    width: auto;
    max-width: 90%;
}