.appstorebutton {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    border: 3px solid rgb(189, 189, 189);
    background-color: rgb(15, 15, 15);
    border-radius: 15px;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0px 0px 100px -30px rgb(255, 255, 255);
  }
  .appstorebutton svg {
    width: 30px;
  }
  .appstorebutton svg path {
    fill: white;
    transition: all 0.3s;
  }
  .buttontext {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: white;
    transition: all 0.3s;
  }
  .toptext {
    font-size: 10px;
    font-weight: 600;
  }
  .bottomtext {
    font-size: 14px;
    font-weight: 600;
  }
  
  .appstorebutton:hover {
    background-color: rgb(236, 236, 236);
    border: 3px solid rgb(138, 138, 138);
  }
  .appstorebutton:hover .buttontext {
    color: black;
  }
  .appstorebutton:hover svg path {
    fill: black;
  }
  