body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.incorrect {
  border: 2px solid red;
}

#flex-container {
  display: flex;
}

#left-pane {
  box-shadow: 0px 4px 52px rgba(0, 0, 0, 0.13);
  height: 100vh;
  min-width: 250px;
}

#logo-div {
  margin: 10px;
}

#logo-img {
  width: 50%;
  margin-bottom: 30px;
}

#left-pane-info {
  margin-left: 30px;
}

#join-text {
  margin-bottom: 10px;
}

input {
  border: 2px solid #099dfd;
  border-radius: 4px;
  margin-bottom: 10px;
  width: 90%;
  padding: 5px;
}

#join {
  color: white;
  background-color: #099dfd;
  border: 2px solid #099dfd;
  border-radius: 4px;
  padding: 5px;
  width: 30%;
  margin-bottom: 30px;
}

#participant-container {
  margin-bottom: 20px;
}

#participants-text {
  margin-bottom: 10px;
}

.participant-name {
  margin-left: 30px;
  margin-bottom: 5px;
}

#right-pane {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
}

#welcome-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20%;
}

#welcome-name {
  color: #099dfd;
  font-size: xxx-large;
  margin-bottom: 5px;
}

#welcome-info {
  font-size: small;
}

#main-frame-name {
  margin-top: 100px;
  font-size: smaller;
}

#main-frame {
  width: 90%;
  height: 50%;
  border: 2px solid #099dfd;
  border-radius: 5px;
  margin-bottom: 10px;
}

#child-frames {
  display: flex;
  flex-direction: row;
  max-width: 70%;
  overflow-x: auto;
  margin-left: auto;
  margin-right: auto;
}

.child {
  border: 2px solid #099dfd;
  border-radius: 5px;
  width: 70%;
  min-width: 400px;
  height: 200px;
  margin-right: 10px;
}

#exit {
  color: white;
  background-color: #099dfd;
  border: 2px solid #099dfd;
  border-radius: 4px;
  padding: 5px;
  width: 40%;
  margin-bottom: 30px;
}
