.scroll {
	--w: 500px;
	width: var(--w);
	height: 140px;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: height 1.2s;
  }
  
  .scroll:hover,
  .scroll.show {
	height: 90%;
  }
  
  .scroll .content {
	width: 80%;
	height: 0px;
	overflow: hidden;
	padding: 0.4rem 1.2rem;
	margin: 0 auto;
	color: white;
	background-color: #372a03;
	transition: height 1.2s;
  }
  
  .scroll:hover .content,
  .scroll.show .content {
	height: 70%;
	overflow-y: auto;
  }
  
  .scroll div[class^='scroll'] {
	width: var(--w);
	height: 60px;
	background-color: rgb(59, 26, 0);
  }
