body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #f5f5f1;
    text-align: center;
}

#contentWrapper {
    width: 80vw;
}

h1 {
    font-family: sans-serif;
    font-size: 2vw;
}

p {
    font-family: sans-serif;
    text-align: justify;
    font-size: 1vw;
}

.logo {
    width: 160px;
    height: auto;
    padding-left: 10px;
    padding-right: 8px;
    padding-top: -100px;
}

.scene_button {
    font-family: sans-serif;
    font-size: 0.9vw;
    margin: 10px;
    padding: 10px;
    text-decoration: none;
    background-color: #78d56b;
    color: black;
    border-radius: 5px;
}

.scene_button:active {
    background-color: saddlebrown;
    color: white;
    font-weight: bold;
}

.tooltip {
    position: absolute;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #dcdcdc;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
    font-size: 0.9vw;
    width: 180px;
    text-align: center;
}

.myFooter {
    background-color: white;
    border: solid;
    border-width: 1px;
    border-radius: 5px;
    padding: 8px;
    position: absolute;
    font-size: 0.5rem;
    pointer-events: none;
}

.keyboardIconSize {
    width: 35px;
    height: auto;
    vertical-align: middle;
}

/* Sizes for screens with a max width of 720px */
@media screen and (max-width: 720px) {
    .keyboardIconSize {
        width: 15px;
        height: auto;
        vertical-align: middle;
    }
}

/* Sizes for screens with a max width of 1280px */
@media screen and (max-width: 1280px) {
    .keyboardIconSize {
        width: 20px;
        height: auto;
        vertical-align: middle;
    }
}

.orientations {
    text-align: center;
    padding: 5px;
    font-family: sans-serif;
    font-size: 0.9vw;
}

kbd {
    border-radius: 2px;
    padding: 2px;
    border: 1px solid black;
}