    body {
        background: linear-gradient(#0f0013, #290033);
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
        color: rgb(255, 55, 245);
        text-align: center;
        font-family: quicksand;
        margin: 0;
        padding: 0;
        height: 100vh;
    }
    
    /* Style the button */
    .button {
        background-color: transparent;
        border: 2px solid rgb(255, 55, 245);
        border-radius: 10px; /* Rounded corners */
        color: rgb(255, 55, 245);
        font-family: quicksand; /* Use the same font as the site */
        font-size: 18px;    
        padding: 10px 20px;
        text-decoration: none; /* Remove underlines from links */
        cursor: pointer;
        transition: background-color 0.3s, color 0.3s, transform 0.3s; /* Add smooth transitions */
    }
    
    /* Style the button on hover */
    .button:hover {
        background-color: rgb(255, 55, 245);
        color: #fff;
        transform: scale(1.1); /* Increase the size by 10% */
    }
        