.appstore-button {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 5vh;
    min-height: 40px;
    width: 12rem;

    background-color: rgb(15, 15, 15);
    border: 2px solid rgb(15, 15, 15);
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s;
  }
  .appstore-button svg {
    width: 1.5rem;
  }
  .appstore-button svg path {
    fill: white;
    transition: all 0.3s;
  }
  .button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: white;
    transition: all 0.3s;
  }
  .top-text {
    font-size: 0.5em;
    font-weight: 600;
  }
  .bottom-text {
    font-size: 12px;
    font-weight: 600;
  }
  
  .appstore-button:hover {
    background-color: rgb(236, 236, 236);
  }
  .appstore-button:hover .button-text {
    color: black;
  }
  .appstore-button:hover svg path {
    fill: black;
  }
  