@charset "UTF-8";
.wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.title {
  font-size: 2rem;
  font-weight: bold;
}

/*角丸に変わる*/
p {
  margin-bottom: 50px;
}

.btnchangeradius {
  /*ボタンの形状*/
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 10px 20px;
  border: 5px double white;
  text-decoration: none;
  outline: none;
  /*アニメーションの指定*/
  transition: 0.3s ease-out;
}
.btnchangeradius:hover {
  background: #666;
  border-radius: 20px;
}
/*# sourceMappingURL=style.css.map */