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

    height: 5vh;
    min-height: 40px;

    width: 12rem;
    border: 2px solid rgb(23, 23, 23);
    border-radius: var(--corner-radius);

    background-color: rgb(23, 23, 23);
    
    text-align: center;
    color: rgba(255, 255, 255, 1);
    outline: 0;
    text-decoration: none;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

    transition: all 0.5s ease, transform 0.2s ease;
  }
  
  .playstore-button:hover {
    background-color: var(--google-play-color);
    border: 2px solid var(--google-play-color);
    transform: translateY(-2px);
  }
  .playstore-button:active{
    transform: translateY(0px);
  }
  
  .icon {
    height: 1.5rem;
    width: 1.5rem;
  }
  
  .texts {
    margin-left: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
  }
  
  .text-1 {
    font-size: 0.6rem;
    line-height: 1rem;
  }
  
  .text-2 {
    font-size: 0.7rem;
    font-weight: 600;
  }
  