@font-face {
    font-family: 'menloregular';
    src: url('./menlo-regular-webfont.woff2') format('woff2'),
        url('./menlo-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

* {
    box-sizing: border-box;
    font-family: 'menloregular';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Make the display fill the screen completely */

html, body, #wrapper {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Map */

#mapDiv {
    height: 100%;
    z-index: 0;
}

/* Start Screen */

#startScreen {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: 1;
}

#menu {
    position: relative;
    margin: auto;
    padding: 2%;
    top: 20%;
    width: 33%;
    border-radius: 10px;
    background-color: #454955;
    opacity: 0.65;
}

#menuTitle {
    margin: auto;
    padding-top: 5vh;
    width: 80%;
    color: #e2e2e2;
    text-align: center;
    font: bold 30px "menloregular";
}

/* login */

#loginContainer {
    padding-top: 5vh;
    padding-bottom: 3vh;
    margin: auto;
    width: 80%;
}

input[type=text], input[type=password] {
    width: 100%;
    padding: 8px 20px;
    margin: 12px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-weight: bold;
    font-size: large;
}

.loginText {
    color: #e2e2e2;
    font-weight: bold;
    font-family: "menloregular";
}

#loginButton {
    background-color: #00B4EB;
    color: white;
    padding: 12px 20px;
    margin: 15px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    font-size: medium;
}

button:hover {
    opacity: 0.8;
}