@charset "UTF-8";

.container {
  margin: 0px auto;
  width: 100%;
  max-width: 1500px;
}

body {
  font-size: 100%;
}

p {
  text-align: center;
}

a.btn_12 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 260px;
  margin: auto;
  padding: 1rem 3rem 1rem 2rem;
  font-weight: bold;
  background: #ffa500;
  color: #fff;
  border-radius: 100vh;
  position: relative;
  transition: 0.5s;
}

a.btn_12::before {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

a.btn_12:hover {
  background: #ffd700;
  color: #fff;
}

@media screen and (max-width: 600px) {
  pa.btn_12 {
    width: 200px;
  }
}