@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;
}
/*stuff*/
.welcome-banner {
	background-color: #B1BEF2;
	color: white;
	margin-top: 70px;
	padding: 20px;
	border-radius: 20px;
}
.welcome-message, .letsbegin-message{
	font-family: Arima, Arial;
	font-size: 40px;
	text-align: center;
	font-weight: 700;
}
.chooselevel-message {
	background-color: #D7CFDB;
	color: white;
	font-family: Arima, Arial;
	font-weight: 700;
	font-size: 20px;
	padding: 10px;
	margin-top: 20px;
	border-radius: 20px;
}
.levels {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 20px;
	row-gap: 20px;
	margin-top: 20px;
}
.level-box {
	background-color: #C7BBD7;
	font-family: Arima, Arial;
	font-weight: 700;
	font-size: 20px;
	padding: 15px 60px 7px 40px;
	height: 40px;
	border-radius: 15px;
}
.level-box2 {
	background-color: #999DBE;
	font-family: Arima, Arial;
	font-weight: 700;
	font-size: 20px;
	padding: 15px 60px 7px 40px;
	height: 40px;
	border-radius: 15px;
}
.links {
	text-decoration: none;
	color: black;
}
.links:hover {
	color: #F1C9C1;
	text-decoration: underline;
}
/* 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;
}