.container {
  height: 100vh;
  display: flex;
  padding: 1rem;
}

.col {
  height: 100%;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.col-3 {
  flex-basis: 25%;
}

.col-9 {
  flex-basis: 75%;
}

.col-9 h3 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.editor-view {
  border: 2px dotted #efefef;
  min-height: 400px;
  width: 100%;
}

.comp {
  background: mediumseagreen;
  height: 50px;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comp:hover {
  cursor: pointer;
}

.hidden {
  display: none;
}

header {
  background-color: darkcyan;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0 1rem;
}

header a {
  color: #fff;
}

img {
  max-width: 100%;
  border-radius: 5px;
  margin: 0.5rem 0;
}

footer {
  background-color: darkcyan;
  color: #fff;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}

.text {
  margin: 0.5rem;
}
