.Button {
  width: 100%;
  padding: 12px;
  text-align: center;
  box-sizing: border-box;
  text-transform: uppercase;
  font-size: 10px;
  border: 2px solid #8FD6FF;
  cursor: pointer;
  background: transparent;
  border-radius: 22px;
  transition: background .3s, color .3s;

  &:hover {
    background: #8FD6FF;
    color: #fff;
  }

  &:active, &:focus {
    outline: none;
  }
}
