@charset "utf-8";      /* 文字コード宣言．utf-8の場合 */
hr {
  height: 10px;	/* 線の高さ（幅）を15ピクセルに指定 → 要素hrに適用 */
  background-color: #B0D25F;	/* 線の色を #ff9900 に指定  → 要素hrに適用 */
  border: none;                 /* 枠線を非表示にする → 要素hrに適用 */
}
p.grenn { background-color: #A8D3A5; }
      /* 背景色を緑に指定  →要素pのclass属性値greenに適用 */ 
p.blue { background-color: #99ccff; opacity:0.5;}
      /* 背景色を青に指定  →要素pのclass属性値blueに適用 */
p.brown { background-color: #8B6F50; }
      /* 背景色を茶色に指定 →要素pのclass属性値brownに適用 */


.container2 {
  font-family: arial;
  font-size: 25px;
  margin: 20px;
  width: 300px;
  height: 100px;
  outline: dashed 3px #A8D3A5;
}

p {
  text-align: center;
}



.container {
  font-family: arial;
  font-size: 20px;
  margin: 20px;
  width: 600px;
  height: 100px;
  outline: dashed 3px #A8D3A5;
  display: flex;
  justify-content: center;
}

.child {
  width: 50px;
  height: 50px;
  background-color: red;
}