/* CSS D. Baril 2023 */

* {
  box-sizing: border-box;
}

body {	font-family: Arial; Verdana; 
		color:#555555; background-color: #F6F6F6;  
		width: 100%; margin: 0px;  font-size: 1em;
}

p  {font-size: 1em;}
h2 {font-size: 1.5em; color:#36454f;}
img {max-width: 100%;height: auto;}

/* --------- menu ----------- */

a {text-decoration: none; color: #1026ac;}
a:hover {background-color: #1026ac; color: white; border-radius: 3px;}
li {list-style: none;}

.noir{
	color:black; text-align:center;
}

/* NAVBAR STYLING STARTS */
.navbar {
  display: flex;  
  overflow: hidden;background-color: #0404B4;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: teal;
  color: #fff;
}

/* .topnav a:hover {background-color: #ddd;color: black;} */

.nav-links a {color: #fff;}

/* NAVBAR MENU */
.menu {display: flex; gap: 1em; font-size: 1.5em;}
.menu li:hover {background-color: #4c9e9e; border-radius: 5px; transition: 0.2s ease;}
.menu a:hover {background-color: #4c9e9e; border-radius: 5px; transition: 0.2s ease;}
.menu li {padding: 5px 5px; background-color: teal;}


/* RESPONSIVE NAVBAR MENU STARTS */

/* CHECKBOX HACK */
input[type=checkbox] {display: none;} 
/* HAMBURGER MENU */
.hamburger {display: none; font-size: 2em; user-select: none;}


/* --------- fin menu ---------- */
.main {
  background-color: #e5e5e5;
  background: #ffff; 
  border: 1px solid #555555; /* dark grey */
  border-radius: 10px;
  float: left;
  margin-left: 0px;
  margin-top: 5px;
  padding: 10px;
  text-align: left;
  width: 44%;
}

.handout {
  background-color: #e5e5e5;
  background: #ffff; 
  border: 1px solid #555555; /* dark grey */
  border-radius: 10px;
  float: left;
  margin-left: 5px; margin-top: 5px; margin-right: 0px;margin-bottom: 10px;
  padding: 10px;
  text-align: left;
  width: 55%;
}

.footer {
  	background-color:#0033cc;
  	float: left;
  	width: 100%;
    padding: 5px 10px 5px 10px; /*T R B L*/
  	margin-top: 5px;
	text-align:right; 
	color:#F2F3F4;

}

@media only screen and (max-width: 650px) {
  /* For mobile phones: */
 	  .main, .handout {
	margin-left: 0px;
	margin-right: 0px;	
    width: 100%;
  }

.menu {
    display:none;
    position: absolute;
    background-color:teal;
    right: 0%;
    left: 60%;
	top: 10%;
    text-align: center;
    padding: 15px 0;
    width: 40%;
  }

.menu li:hover {
    display: inline-block;
    background-color:#4c9e9e;
    transition: 0.2s ease;
  }

input[type=checkbox]:checked ~ .menu {display: block;}
  .hamburger {display: block; border: 1px solid silver;
  border-radius: 5px;padding: 0px 5px;margin-right: 5px;}

}




