body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    height: 100vh; /* Fixed viewport height - no scrolling */
    margin: 0;
    padding: 0;
    
    /* Disable unwanted touches (eg. zoom, pan) */
    touch-action: none;
}

.centredOnPage {
    position: absolute;
    top: 40%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%)
}
.centredOnPage p {
    text-align: center;
}

.centredOnPage input {
    font-size: 32px;
    width: 200px;
}

.mainMessage {
    font-size: 32px;
}

.subMessage {
    font-size: 24px;
    color: gray;
}

.errorMessage {
    font-size: 32px;
    color: red;
}

.clientScreen {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.header {
    height: 10vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: lightgreen;
}

#playerControls {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 2vw; */

    /* Disable unwanted touches (eg. zoom, pan) */
    touch-action: none;
}

.partyCode {
    position: absolute;
    top: 0;
    right: 0;

    font-size: 18px;
    color: gray;
    text-align: right;
    margin: 10px;
}

#playerName {
    text-align: center;
    font-size: 5vh;
    color: black;
}

.hidden {
    display: none !important;
}

.player {
    width: 30vw;
    height: 30vw;
    background-color: gray;
    border-radius: 8px;

    font-family: Helvetica;
    font-size: 20vw;
    rotate: 90deg;
}

.contactInfo {
    color: gray;
    margin-top: 100px;
}