body {
    background-color: white;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: radial-gradient(circle at center, white 0%, lightpink 10%, white 70%);
}


.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px; 
    height: 120px; 
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.logo {
    max-width: 80%; 
    max-height: 80%;
}

.buttons-container {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.button-link {
    text-decoration: none; 
    color: inherit; 
}

.button-card {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    border-radius: 8px;
    border: none; 
    cursor: pointer; 
    width: 100%; 
    text-align: left; 
    padding: 10px; 
}

.button-card:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); 
    
}

.button-image {
    width: 50px; 
    height: 50px; 
    margin-right: 15px; 
    border-radius: 50%; 
}

.button-text {
    flex: 1; 
    margin: 0; 
    font-weight: bold;
}

.button-icon {
    font-size: 24px; 
    margin-left: 15px; 
    cursor: pointer; 
}