/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
	height: 100vh; /* Ensure the body takes up the full viewport height */
}

header {
    background-color: white;
    /* background-image: url('cosysco.gif'); */
    /* background-size: 200px auto; */
    /* background-repeat: no-repeat; */
    /* background-position: left top; */
	
	
	color: black;
    padding: 2px 0;
    text-align: center;
	
}

section {
    padding: 2px;
    margin: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 2px;
    background-color: white;
	
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
}