
/* To change the color of the background of the pages */

body {
  background-color: #0066ff;
}

/* To style images */

img {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  width: 400px;
  margin: auto;
  text-align: center;
}

/* To style the main manu */

#submit {
  background-color: blue;
  padding: .5em;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 6px;
  color: #fff;
  font-family: 'Oswald';
  font-size: 20px;
  text-decoration: none;
  border: none;
  text-align: center;
  
}

#submit:hover {
  border: none;
  background: #ff66ff;
  box-shadow: 0px 0px 1px #777;
}

#submit:active {
	
	border: none;
	background: #ff0000;
	box-shadow: 0px 0px 1px #777;
}

/* To style the submenu */

#secondMenu {
	
	background-color: blue; /* blue background */
	padding: .5em;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 6px;
	color: white; /* White text */
	width: 50%; /* Set a width if needed */
	display: inline;
	font-family: 'Oswald';
	font-size: 20px;
	text-decoration: none;
	border: none;
	}

#secondMenu:hover {
  border: none;
  background: #ff66ff;
  box-shadow: 0px 0px 1px #777;
}

#secondMenu:active {
	
	border: none;
	background: #ff0000;
	box-shadow: 0px 0px 1px #777;
	
}

/*To style all the tables */

table, th, td {
			border: 1px solid blue;
		}
		
th {
  text-align: center;
}

td {
  text-align: center;
  }
 
 /*To style paragraphs */
 
p {
	text-align: justify;
	font-family: 'Oswald';
	font-size: 20px;
	color: white;
	
}