.custom-button-link {
    text-decoration: none;
    color: inherit;
}
  
.custom-button {
    display: flex;
    align-items: center;
    background-color: black;
    color: white;
    border: none;
    padding: 0.7rem 1.3rem;
    border-radius: 1.6rem;
    height: 2.8rem;
    cursor: pointer;
    font-family: Arial, sans-serif;
  }
  
.custom-button p {
    margin-left: 0.7rem;
    font-size: 1.0rem;
}

.custom-button img {
    height: 100%;
}
  
.custom-button:hover {
    background-color: #333;
}
  
.custom-button:active {
    background-color: #222;
}
  