/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    padding: 20px;
}

/* Heading Styling */
h1 {
    text-align: center;
    font-size: 3.0em;
    color: #4A90E2;
    margin-bottom: 30px;
}

a {
	font-size: 1.5em;
	display: inline-block;
	text-align: center;
}

/* Form Styling */
form {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Form Elements Styling */
label {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

input,
select {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #4A90E2;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #357ABD;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    padding: 0px;
}

th, td {
    padding: 10px;
    text-align: center;
}

th {
    background-color: #4A90E2;
    color: white;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

td {
    border-bottom: 1px solid #ccc;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    h1 {
	font-size: 2.5em;

    }
    form {
        width: 90%;
    }

    table {
        font-size: 0.9em;
    }

    th, td {
        padding: 8px;
    }

    input[type="submit"] {
        font-size: 1em;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2.0em;
    }

    label {
        font-size: 1em;
    }

    input,
    select {
        font-size: 1em;
    }

    table {
        font-size: 0.8em;
    }
}

