* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  width: 120px;
  height: fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

main section:nth-child(1) div {
  padding: 10px;
  border: solid 1px black;
}

main section:nth-child(1) div p {
  font-size: 20px;
  font-weight: bold;
}

main section:nth-child(2) {
  width: 150px;
  display: flex;
  flex-direction: column;
}
