body {
  overflow: hidden;
  margin: 0%;
}

#text {
  background-color: rgb(255, 255, 255);
  position: relative;
  z-index: 8;
}

#info {
  height: 100%;
  width: 0%;
  float: right;
  position: relative;
  z-index: 8;
  background-color: rgba(208, 208, 208, 0.95);
  box-sizing: border-box;
}

a {
  color: black;
}
a:hover {
  color: darkred;
}

#container {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}

.area {
  height: 80%;
  width: 80%;
  position: absolute;
}

.circle {
  height: 200px;
  width: 200px;
  background-color: rgb(173, 255, 234);
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 100px;
  left: 300px;
}

.rectangle {
  background-color: navajowhite;
  height: 150px;
  width: 250px;
  position: absolute;
}

.text-area {
  position: absolute;
  top: 300px;
  left: 500px;
}
