body{
  background: #efefef;
  margin: 0;
}

header{
  font-weight: bold;
  font-size: 40px;
  text-align: center;
  background-color: pink;
}

p{
  text-align: center;
  font-size: 20px;
  padding-bottom: 20px;
}

#btn{
  width: 200px;
  height: 200px;
  background-color: red;
  border-radius: 50%;
  margin: 30px auto; /*中央寄せを行う。30pxで上下を少し下げ、autoが中央寄せを行っている*/
  text-align: center;
  line-height: 200px;/*text-align centerで文字を左右で中央にし、line-heightで上下の中央の調整を行っている*/
  color: #fff;
  font-weight: bold;/*フォントを太めに設定している*/
  font-size: 42px;
  cursor: pointer;/*カーソルプロパティをポインタにしている*/
  box-shadow: 0 10px 0 #d1483e;
  user-select: none;/*テキストの選択を無くす*/
}

#btn:hover{
  opacity: 0.8;
}/*マウスがボタンに乗るときの動作*/

#btn:active{
  box-shadow: 0 5px 0 #d1483e;
  margin-top: 35px;
}/*要素がクリックされた時の指定*/