a{
    text-decoration: none;
}

.button-container{
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-button-container{
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-button-container button{
    font-size: 1rem;
    color: rgb(255, 255, 255);
    padding: 0.6rem 1rem;
    background:linear-gradient(to bottom, #ff12aa,#bb0076);
    border: none;
    border-radius: 12px;
    transition: all 0.35s ease-out;
    font-family: 'Satoshi';
}

.header-button-container button:hover{
    background: #ffffff;
    color: rgb(0, 0, 0);
    font-family: 'Satoshi';
}

.header-button-container button:active{
    background: #d8d8d8;
    color: rgb(22, 22, 22);
}

.custom-cursor {
    width: 14px;
    height: 14px;
    background-color: #ff12aa;
    border-radius: 50%;
    position: fixed;
    z-index: 144444444444;
    pointer-events: none;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference; /* Optional: Helps it stand out on different backgrounds */
  }