body, html {
    font-family: Ubuntu, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.heading {
    text-align: center;
    margin-top: 50px;
}

.options-card {
    background-color: #fff;
    width: 300px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(68, 81, 255, 0.1);
    text-align: center;
}

.options-card a {
    display: inline-block;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #4451ff;
    transition: background-color 0.3s ease;
    align-items: center;
    transition: all 0.3s ease;
}

.options-card a:hover {
    border: 1px solid #6872ff;
    color: #6872ff;
    transition: all 0.3s ease;
}
