/* Body */
body {
    background-color: #efb718;
}

/* Header */
header {
    text-align: center;
    margin: 16px;
}

h1.header {
    font-family: 'black';
    color: white;
    text-shadow: 6px 6px black;
    font-size: 128px;
    margin: 0;
}

/* Main */
main {
    width: 75%;
    margin: auto;
}

/* Text */
p {
    font-family: 'medium';
    font-size: 24px;
}

/* Hide cursor */
* {
    /* cursor: none !important; */
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}