html,
body {
    background-color: #f0f0f0;

    -moz-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;

    overscroll-behavior-y: none;

    font-family: "Inconsolata", "Courier New", sans-serif;

}

.card {
    background-color: white;
    width: 350px;
    margin: auto;
    padding: 10px;
    margin-bottom: 30px;
}

p {
    max-width: 30em;
    color: black;
    text-align: center;
    margin: 40px auto;
    font-size: 2em;
}

.container {
    padding-top: 6em;
    text-align: center;
}

#starnumber {
    width: 50px;
    position: relative;
    float: left;
    margin-left: 50%;
    margin-right: 50%;
    margin-bottom: -100px;
    left: -185px;
    text-align: left;
    color: #aaa;
}

#roomID {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    left: 85px;
    text-align: right;
    position: relative;
    margin-bottom: 15px;
    color: #aaa;
}

.butt {
    margin: 20px;
    padding: 5px;
    margin-top: 30px;
    font-size: 1.4em;
    background-color: #555555;
    color: white;
    height: 70px;
    text-decoration: none;
    outline: none;
    border: none;
    width: 70px;
    border-radius: 35px;
    transition: 0.2s;
}

.butt:hover {
    background-color: #222222;
}

