* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body {
  height: 100vh;
  background-color: lightblue;
}

.primary-container {
  display: flex;
  height: 100vh;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.left-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  flex-direction: column;
  height: 100vh;
  padding-bottom: 2em;
  padding-top: 4em;
}
.center-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 2;
  flex-direction: column;
  height: 100vh;
  padding-bottom: 2em;
  padding-top: 4em;
}
.right-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  flex-direction: column;
  height: 100vh;
  padding-bottom: 2em;
  padding-top: 4em;
}

.logo {
  height: 200px;
  margin-bottom: 3em;
}

.villager {
  height: 400px;
}

.large-image {
  height: 500px;
  margin-top: 3em;
}

.video {
  margin-right: 3em;
  border: black 3px solid;
}

.chat-room {
  margin-left: 2em;
}
