* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: none;
}

html {
  font-family: "Montserrat Alternates", sans-serif;
  font-style: normal;
  background-color: #F2F2F2;
  max-width: 100vw;
  overflow-x: hidden;

  scroll-behavior: smooth;
}

.story-btn-box {
  display: flex;
  gap: 20px;
}

.story-btn {
  padding: 8px 12px;
  border-radius: 10px;

  font-size: 19.28px;
  line-height: 24px;
  font-weight: 700;
  color: #F2F2F2;
  
  display: flex;
  flex-direction: row;
  align-items: center;

  width: 186.36px;
  text-align: left;

  cursor: pointer;
  text-decoration: none;
}

.story-btn img {
  height: 32.46px;
  margin-right: 5.93px;
}

.play-story-btn {
  background-color: #3E4095;
}

.apple-story-btn {
  background-color: #FE673E;
}

@media (max-width: 550px) {
  .story-btn-box .story-btn {
    width: 100%;
    font-size: 18px;
    line-height: 20px;
  }

  .story-btn-box .story-btn img {
    height: 20px;
    margin-right: 5.93px;
    
  }
}