/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f8ff;
    color:#002147;
    text-align: center;
}

header {
    background-color: #e0f0ff;
    padding:15px;
}

.logo {
    width:80px;
    display: block;
    margin: 0 auto 10px;
}

nav a {
    margin:0 10px;
    color:#002147;
    font-weight: 600;
}

.grid {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin:20px;
}

.item {
    background-color: white;
    border:2px solid #b0d0ff;
    padding:20px;
    border-radius: 10px;
}

footer {
    background-color: #e0f0ff;
    padding:15px;
    margin-top: 20px;
    font-size: 14px;
}

footer a {
    color:#002147;
}

table {
    margin:20px auto;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #002147;
    padding:10px 20px;
}

form {
    margin-top: 20px;
}

input, textarea {
    width:80%;
    padding:8px;
    margin:5px 0;
    border:1px solid #b0d0ff;
    border-radius: 5px;
}

button {
    padding: 8px 15px;
    background-color: #b0d0ff;
    border:none;
    cursor: pointer;
    border-radius: 5px;
}

.required {
    color:red;
}