body {
    font-family: Roboto, Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}

.logo {
    width: 160px;
    height: 160px;
    margin: 20px;
    background-image: url("favicons/android-chrome-256x256.png");
    background-size: cover;
    float:left;
}

.title {
    width: 360;
    height: 180px;
    margin: 20px;
    line-height:180px;
    font-size:100px;
    font-weight: bold;
    color: #FF9500;
    float:left;
}

.buttoncontainer {
    float:left;
}

.buttonlabel {
    width:200px;
    height: 30px;
    border-radius:20px;
    font-size: 20px;
    text-align: center;
    line-height: 30px;
    padding:10px;
    background-color: orange;
    color: white;
    font-weight: bold;
    margin:20px;
}

.buttonlabel:hover {
    background-color: grey;
}

.button {
    width:200px;
    height: 30px;
    border-radius:20px;
    font-size: 20px;
    text-align: center;
    line-height: 30px;
    padding:10px;
    background-color: black;
    color: white;
    font-weight: bold;
    margin:20px;
}

.button:hover {
    background-color: grey;
}

.connectbutton {
    height: 300px; 
    width: 50%;
    text-align:center;
    font-size:50px;
    line-height:300px;
    float:left; 
    background-color: green; 
    color:white;
    cursor:pointer;
    opacity: 0.9;
}

.connectbutton:hover {
    opacity: 1.0;
}

.disconnectbutton {
    height: 300px; 
    width: 50%;
    text-align:center;
    font-size:50px;
    line-height:300px;
    float:left; 
    background-color: red; 
    color:white;
    cursor:pointer;
    opacity: 0.9;
}

.disconnectbutton:hover {
    opacity: 1.0;
}

select {
    -webkit-appearance:none;
    -webkit-border-radius: 0px;
    width: 50%;
    padding: 12px 20px;
    margin-left:0px;
    /*display: inline-block;*/
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: Roboto, Arial, Helvetica;
    font-size: 48px;
    opacity: 0.8;
    float:left;
    height:100px;
}

select:hover {
    opacity: 1.0;
}

#messagebox {
    height:100px;
    width:50%;
    float:left;
    background-color:#555;
    border-radius:5px;
    text-align:center;
    line-height:100px;
    font-size:24px;
}