@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: transparent;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  color: #fff;
  padding: 10px 30px;
}

.main {
	color: black;
}

.logo a {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
}

/* Header styles */
header {
  background-image: url("images/ceiling.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header h1 {
	color: white;
	text-align: center;
    margin-bottom: 20px;
    font-size: 72px;
    font-weight: bold;
}

.header p {
	color: white;
	font-size: 28px;
	text-align: center;
}

.col {
    width: 100%;
    margin: auto;
    height: 100vh;
	padding: 200px;
    text-align: center;
	background-image: url("images/statue.jpg");
	background-position: center;
	background-size: cover;
}

.col h1 {
    font-size: 36px;
	color: white;
	padding-top: 200px;

}

.col h2 {
    font-size: 45px;
    font-weight: 600;
	color: white;
}

.col p {
    color: white;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.course-col {
    flex-basis: 31%;
    background:transparent;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
}

.course-col h3 {
	color: white;
}

.course-col p {
	color: white;
}



/* Footer styles */
footer {
  background-color: black;
  color: #fff;
  padding: 20px 30px;
  text-align: center;
}