html, body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  height: 100%;
  width: 100%;
}

* {
  box-sizing: border-box;
}

#root {
  height: 100%;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  display: flex;
}

.block_style {
    height: 200px;
    width: 200px;
    display: inline-block;
    margin: 10px;
    transition: background-color 300ms linear;
    border-radius: 10px;
	position: relative;
}


.gameContainerStyle {
   flex-grow: 1;
   flex-direction: row;
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   width: 100%;
}

.menuStyle {
    width: 100%;
    background: black;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-grow: 0;
    color: white;
    align-items: center;
}

.logoStyle {
    font-size: 25px;
    padding: 15px;
    cursor: default;
    font-weight: 700;
}

.buttonStyle {
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    border: 1px solid white;
    cursor: pointer;
    transition: background-color 250ms linear;
    user-select: none;
    position: relative;
}

.buttonStyle:hover {
    background-color: white;
    color: black;
    border-color: black;
}

.buttonStyle:active {
    top: 1px;
}

.vertical-center {
  margin: auto;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}