
body {
  background-color: black;
}

.contentwrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;

}

.videocontainer {
  width: 60%;
}

.videoplayer {
  width:100%;
  height: 70vh;
}


.actioncontainer {
  width: 30%;
}

.topbar {
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.logocontainer {
  margin-top: 10px;
  width: 250px;
}

.logocontainer img {
  width: 100%;
}

.drinkscontainer {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 18%;
}

.chatcontainer {
  width: 100%;
  background-color: red;
  border-style: solid;
  border-color: white;
  margin: auto;

}

.drink {
  color: white;
  text-decoration: none;
  padding: 20px;
  border-style: solid;
  border-color: white;
  border-radius: 5px;
  border-width: 1px;
  margin-left: 10px;
  height: 20px;
  font-family: 'Roboto', sans-serif;
  background-color: black;
  background: rgba(0, 0, 0, 0.7);
}

.drink:hover {
  background-color: white;
  color: black;
}

.chat {
  height: 70vh;
  width: 100%;;
  border-style: solid;
  border-width: 5px;
  border-color: white;


}


@media only screen and (max-width: 740px){


.chat {
  height: 600px;
  width: 100%;
  border-radius: 0px;
}

.topbar {
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

}
