:root {
    --glow-color: #999;
    --hover-color: white;
}

body {
    background-color: #222;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

#audio {
    position: absolute;
    top: 0;
    left: 0;
}

#start {
    position: fixed;
    display: flex;
    justify-content: center;
    align-self: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    text-align: center;
    font-weight: 400;
    font-size: 4em;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    cursor: pointer;
    padding: 10px;
    z-index: 110;
    /* border-radius: 100%; */
    background-color: rgba(255, 255, 255, 0.15);
}

#start img {
    width: auto;
    height: 500px;
    opacity: 0.6;
    animation: fadeOut 3s forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

canvas {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

#info {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    text-align: left;
    z-index: 300;
    color: lightcoral;
}

#topInfo {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    width: auto;
}

#dots{
    position: relative;
    z-index: 30;
    color: snow;
    cursor: pointer;
    height: 20px;
    width: auto;
    opacity: 0.7;
    /* line-height: 30px; */
}

#dots:hover {
    opacity: 1;
}

#city {
    position: relative;
    font-size: 1.0em;
    /* font-weight: bold; */
    font-family:'Courier New', Courier, monospace;
    z-index: 30;
    color: snow;
    cursor: pointer;
    height: 25px;
    padding-right: 20px;
    opacity: 0.8;
}

#gui {
    position: absolute;
    z-index: 20;
    display: none;
}

button {
    z-index: 999;
}