<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.first, .second{
  width: 49.9%;
  height: 100px;
  border: 5px solid #000000;
  padding: 10px 20px 15px 5px;
  display: inline-block;
}

.first{
  /* width: 50%;
  height: 100px; */
  background-color: pink;
}

.second{
  /* width: 50%;
  height: 100px; */
  background-color: aqua;
  overflow: hidden;

}

.container{
  margin-top: 100px;
  background-color: lightblue;
  position:relative;
  font-size: 20px;
}

.paragraph{
  background-color: lightgreen;
  position: absolute;
  top: 0px;
  left: 0px;
}
</pre></body></html>