@import url('https://fonts.googleapis.com/css2?family=Aubrey&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
	margin: 0;
	box-sizing: border-box;
}
img {
	max-width: 100%;
	border-radius: 10px;
}
.clearfix {
	clear: both;
}


/* BASE */
body {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 18px;
}
header {
	padding: 20px 30px;
	display: flex;
	justify-content: space-between;
}
#logo {
	width: 400px;
}
nav {
	margin-left: auto;
}
nav ul {
	display: flex;
}
nav ul li {
	list-style: none;
	margin-left: 20px;
}
nav ul li a {
	color: #ffffff;
	text-transform: uppercase;
	text-decoration: none;
	padding: 15px 20px;
	background-color: #D68189;
	border-radius: 10px;
	position: relative;
	top: 0;
	transition: top .2s;
}
nav ul li a:hover {
	background-color: #E94E77;
	top: 10px;
}
main, section, footer {
	width: 100%;
}
main {
	min-height: 100vh;

}

/* FOOTER */
footer {
	font-size: 13px;
	text-transform: capitalize;
	padding: 10px 30px;
	background-color: 
#C6A49A;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer img {
	width: 200px;
}
p#copyright {
	margin-left: 10px;
	margin-right: auto;
}

/* SECTION */
section {
	padding: 30px;
}
section.white {
	background-color: #ffffff;
}
section.tan {
	background-color: 
#EEEBE6;
}
.content {
	width: 960px;
	margin: 0 auto;
	padding: 50px 0;
}
iframe {
	border: 0;
	width: 100%;
}

/* TEXT */
h1#welcome, h2, h3, p.subtitle {
	text-align: center;
}
h1#welcome, h3, p.name, small {
	text-transform: capitalize;
}
h1#welcome {
	font-family: "Aubrey", system-ui;
	font-weight: 800;
	font-size: 40px;
	color: #000000;
	margin-bottom: 20px;
}
h1, h2 {
	font-weight: 400;
	text-transform: uppercase;
}
h1 {
	font-size: 50px;
	color: #ffffff;
	margin: 0;
}
h2 {
	letter-spacing: 1em;
	margin: 0;
}
h3 {
	margin: 10px 0;
}
h4 {
	text-transform: uppercase;
}
p {
	margin: 10px 0;
}
p.subtitle {
	font-weight: 300;
	margin: 10px 0;
}
p.name {
	font-weight: 700;
	margin-top: 10px;
}

/* FEATURE */
#feature {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
#feature-text {
	padding-right: 10px;
	flex-basis: 66.67%;
}
p.feature-text {
	margin: 20px 0;
}
#feature-text h3 {
	text-align: left;
	text-transform: capitalize;
}
#cta {
	background-color:  #C6A49A;
	border-radius: 10px;
	margin-top: 10px;
	padding: 15px;
	text-align: center;
	color: #ffffff;
	width: 340px;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: center;
	height:380px;
}
#cta p {
	margin: 10px;
}
#enroll {
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
}
#price {
	background-color: #E3CFB4;
	padding: 10px;
	text-transform: uppercase;
	border: 3px solid #ffffff;
	width: 100px;
	height: 100px;
  	margin: auto;
  	color: #E94E77;
  	line-height: 75px;
	border-radius: 50%;
	background-color: #E3CFB4;
	display: flex;
	justify-content: center;
	align-items: center;	
}
#price:hover {
	border: 3px solid #E94E77;
}
#price sup {
	padding: 0;
	margin-top: -10px;
}
#price span {
	font-size: 40px;
	font-weight: 800;
}
a#button {
	color: #ffffff;
	text-transform: uppercase;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 10px;
	background-color: #E94E77;
	cursor: pointer;
}
a#button:hover {
	background-color: #000000;
}

/* LESSONS */
#lessons, #videos {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
}
.lesson, .video {
	background-color: #ffffff;
	border-radius: 10px;
	padding: 10px;
}
.lesson {
	font-size: 16px;
	flex-basis: 24%;
	box-sizing: border-box;
}
.video {
	width: 32%;
}
.page {
	margin: 10px 0;
	background-color: #E3CFB4;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: center;
}
.lesson p {
	margin-bottom: 10px;
}
.skill-level {
	font-size: 14px;
	text-transform: uppercase;
	width: 100px;
	padding: 10px;
	background-color: #E94E77;
	margin-top: 30px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: flex-end;
}
p.level {
	color: #ffffff;
	font-size: 25px;
	font-weight: 800;
	margin: 0;
	padding: -10px 0 0;
}

/* ABOUT */
#pagelabel {
	background-color: #C6A49A;
	background-image: url(../images/bg_tile.png);
}
#masters {
	width: 600px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
}
.master {
	margin: 20px 0;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: center;
	flex-basis: 50%;
}
.master img {
	border-radius: 50%;
}
#schoolmasters {
	display: flex;
	justify-content: space-between;
}
#headmaster, #faculty {
	flex-basis: 50%;
	box-sizing: border-box;
	text-align: center;
}
#headmaster img {
	border-radius: 30px;
	width: 275px;
}
#faculty {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#faculty img {
	width: 120px;
	border: 5px solid #EEEBE6;
}
#faculty img:hover {
	border: 5px solid #E94E77;
}