@charset "UTF-8";
/* CSS Document */
header {
  height: 55px;
  display: flex; 
  flex-direction: row;
  justify-content: space-between;
  position:fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #F1E9E6;
}
.left-section {
	margin-left: 20px;
}
.middle-section {
  max-width: 500px;
  display: flex;
  align-items: center;
}
.right-section {
  width: 100px;
  margin-right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.header-text {
	margin-right: 20px;
	color: black;
	text-decoration: none;
}
.homepage-logo {
	width: 45px;
	height: 45px;
	margin-top: 5px;
	border-radius: 50%;
}
/*Dropdown section*/
.dropbtn {
  background-color: #F1E9E6;
  color: black;
  font-family: Ibarra Real Nova, Arial;
  font-weight: 500;
  font-size: 16px;
  margin-right: 15px;
  border: none;
  border-radius: 20px;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 20px;
}
.dropdown-content a { /*links inside the dropdown*/
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
	background-color: #ddd;
}
.dropdown:hover .dropdown-content { /*syntax means "when hovering over <div> of .dropdown, show the dropdown-content"*/
	display: block;
}
.dropdown:hover .dropbtn { /*syntax means "when hovering over the word 'courses', change color to white"*/
	background-color: #f1f1f1;
}
.container {
	margin-top: 65px;
}
.title { 
	font-family: Bodoni Moda, Arial;
	font-size: 50px;
}
.pdf-image {
	margin-left: 430px;
	margin-top: 25px;
}
.image {
	width: 50%;
	border-style: solid;
	border-color: grey;
	border-radius: 20px;
	
}
.button {
	margin-left: 550px;
	color: white;
	font-size: 15px;
	background-color: dodgerblue;
	border: none;
	padding: 12px 30px;
	cursor: pointer;
}
.button:hover {
	background-color: royalblue;
}
/*footer */
.footer {
	background-color: #F1E9E6;
	font-family: Arima, Arial;
	margin-top: 40px;
	padding: 5px 0px 0px 6px;
	height: 350px;
	width: 100%
}
.need-help {
	font-weight: 700;
	font-size: 25px;
}
.about, .course, .programs, .register, .login {
	font-weight: bold;
	text-decoration: none;
	color: black;
}
.header-text {
	margin-right: 20px;
	color: black;
}
