.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.logo {
    width: 350px; /* Adjust this value based on the size of your logo */
    margin-bottom: 20px;
    margin-top: 20px; 
    border-radius: 15px;
}

p {
    font-size: 24px;
    color: white;
}

a {
    font-size: 20px;
    color: #00fff2;
}

a:hover {
    color: blue;
}

.dc-btn a {
        background: linear-gradient(to left, var(--site-color-01), var(--site-color-01)); /* Gradient from left (green) to right (lighter green) */
        transition: background 0.3s ease, color 0.3s ease;
        color: white;  /* Original text color */
        border: none;
        padding: 15px 25px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 25px;
        margin: 4px 2px;
        cursor: pointer;
        border-radius: 25px;
        margin-top: 15px;
    }
    

.dc-btn a:hover {
        background: linear-gradient(to left, var(--site-color-01-hover), var(--site-color-01-hover)); /* Gradient from top (green) to bottom (lighter green) */
    }
    
