* {
    -khtml-user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    user-select: none;
    margin: 0;
    padding: 0;
}
.headbar {
    background-color: #2B3856; 
    position: relative; 
    width: 100%; 
    height: 16%; 
    font-family: Arial, Helvetica, sans-serif; 
    color: white; 
    text-align: center; 
}

.headbar p a {
    color: white; 
}

.headbar .flexone {
    display: flex; 
    flex-basis: auto;
    justify-content: center;  
}
.headbar h2 {
    margin: 0; 
    padding: 1.3%; 
}
.headbar p {
    margin-top: 1.8%; 
}

.headbar .flextwo {
    display: flex; 
    justify-content: center; 
}

.headbar .flextwo .box{
    height: 15px;
    width: 15px;
    margin-top: 0.79%; 
    flex-wrap: wrap; 
}

.headbar .flextwo p {
    margin-top: 0.7%;
    margin-left: 3px; 
    margin-right: 10px;
    flex-wrap: wrap;  
}

.headbar .flextwo #greybox{
    background-color: gray; 
}
.headbar .flextwo #redbox{
    background-color: brown; 
}
.headbar .flextwo #greenbox{
    background-color: lightgreen; 
}
.headbar .flextwo #pinkbox{
    background-color: pink; 
}

.phoneannounce {
    text-align: center;
}
.board {
    text-align: center;
    margin: 30 auto;
    margin-bottom: 3px; 
    width: 1000px;
    height: 600px; 
    overflow: hidden;
}

/* Menu Section */

.board .menugrid {
    margin: auto; 
    margin-top: 80px; 
    width: 700px; 
    height: 400px; 
    background-color: rgba(72, 72, 72, 0.6);
    border-radius: 10px; 
}
.board .menugrid h2 {
    opacity: 1; 
    color: white; 
    font-family: Arial, Helvetica, sans-serif; 
}

.board .menugrid .button {
    color: white; 
    font-family: Arial, Helvetica, sans-serif; 
    font-size: 18px; 
    opacity: 0.9; 
    padding: 0; 
}

.board .button:hover{
    cursor: pointer;
    opacity: 1; 
}

.menucontainer {
    display: flex; 
    width: 1000px; 
    margin: auto; 
    
}

h3 {
    font-size: 17px; 
    text-align: center; 
    padding-top : 10px; 
    font-family: Arial, Helvetica, sans-serif; 
    margin-top: 5px;
    margin-right: 10%; 
    margin-bottom: 160px;


}

.board .square:hover{
    background-color: "black";
    cursor: pointer;
    transform: scale(1.2);
}

/* Dropdown Menubar */
.dropbtn {
    font-size: 17px; 
    color: black;
    padding: 16px;
    font-weight: bold;
    background-color: white; 
    border: none; 
}
  
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

.menucontainer .runbutton {
    cursor: pointer; 
    margin-top: 15px; 
    color: #303030;
    font-size: 17px;
    margin-left: 10%;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

