/* General styles */
body {
    font-family: Arial, sans-serif;
    background-color: #959cff; /* Changed background color */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1 {
    color: #333;
    text-align: center;
    font-size: 64px;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

a {
    display: block;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    padding: 14px; /* Increased padding */
    border-radius: 4px;
    text-align: center;
    font-size: 28px; /* Increased font size */
}

a:hover {
    background-color: #0056b3;
}

/* Media query for tablets */
@media (max-width: 768px) {
    h1 {
        font-size: 24px; /* Increased font size */
    }

    a {
        font-size: 20px; /* Increased font size */
        padding: 12px; /* Increased padding */
    }
}

/* Media query for mobile devices */
@media (max-width: 480px) {
    h1 {
        font-size: 22px; /* Increased font size */
    }

    a {
        font-size: 18px; /* Increased font size */
        padding: 14px; /* Increased padding */
    }
}