@charset "UTF-8";
/* CSS Document */
body {
	background-color: #EFD9D1;
	width: 100%;
	text-align: center;
	margin-top: 70px;
	height: 95%;
}
header {
  height: 55px;
  display: flex; 
  flex-direction: row;
  justify-content: space-between;
  position:fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #BDBEA2
}
.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 {
	font-family: Ibarra Real Nova, Times New Roman;
	font-weight: 500px;
	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: #BDBEA2;
  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;
}
/*stuff*/
.title {
	font-family: EB Garamond, Montserrat;
	font-size: 55px;
	font-weight: 600px;
}
.message {
	font-family: Crimson Text, Montserrat;
	font-size: 25px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.text {
	font-family: Crimson Text, Montserrat;
	font-size: 25px;
	margin-top: 20px;
}
.email {
	font-family: Ibarra Real Nova, Montserrat;
	font-size: 20px;
	margin-top: 15px;
}
.box {
	width: 400px;
	height: 50px;
}
.button {
	font-familY: Nunito, Montserrat;
	font-size: 15px;
	background-color: white;
	border-style: solid;
	border-color: grey;
	border-weight: 1px;
	border-radius: 20px;
}
.button:hover {
	background-color: grey;
	cursor: pointer;
}
/* Footer */
.footer {
	background-color: #F1E9E6;
	font-family: Arima, Arial;
	margin-top: 40px;
	height: 150px;
	display: block;
}
.need-help {
	font-weight: 700;
	font-size: 25px;
	margin-left: 50px;
	margin-top: 40px;
	display: inline-block;
}
.contacts {
	margin-left: 50px;
	font-size: 20px;
	display: inline-block;
}
.footer-info {
	display: grid; 
	grid-template-columns: 1fr 1fr;
	float: right; 
	margin-right: 120px;
}
.footer-info a {
	text-decoration: none;
	color: black; 
	font-size: 20px;
}
.programs {
	margin-top: 30px;
	margin-left: 20px;
}
.about {
	margin-top: 30px;
}
.register {
	margin-top: 30px;
	margin-right: 20px;
}
.login {
	margin-top: 30px;
	margin-left: 20px;
}
.ending-logo {
	font-size: 40px;
	margin-top: 50px;
	margin-right: 45px;
	border-radius: 50%;
	display: inline; 
	float: right;
}