/***Colors***/
:root{
--paper:#eeebe6;
--khaki:#e3cfb4;
--tan:#c6a49a;
--mauve:#d68189;
--hotpink:#e94e77;
}

/***Global***/
body{
    margin: 0;
}
section{
    padding: 30px;
}
img{
    width: 100%;
    border-radius: 10px;
}
.conwidth{
    width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.paper-bg{
    background-color: var(--paper);
}
ol li{
    font-family: "Roboto", sans-serif;
    font-optical-sizing: 18px;
    font-weight: 400;
    font-style: normal;
}

/***Fonts***/
p {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: 18px;
    font-weight: 400;
    font-style: normal;
  }

h1 {
    font-family: "Aubrey", system-ui;
    font-size: 48px;
    font-weight: bold;
    font-style: normal;
  }
  
h2{
    font-family: "Roboto", sans-serif;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1em;
    text-transform: uppercase;
}

h4{
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
}

/***Header***/
header{
    padding: 30px;
}
#logo-image{
    width: 400px;
}
nav ul li{
    font-family: "Roboto", sans-serif;
    list-style: none;
    margin-bottom: 50px;
}
nav ul li a:link, nav ul li a:visited{
    background-color:var(--mauve);
    color: white;
    font-size: 24px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px 25px;
    border-radius:10px;
}
nav ul li a:hover{
    background-color: var(--hotpink);
}

/***Enroll Now***/
#enroll-now{
    background-color: var(--tan);
    color: white;
    padding: 20px;
    border-radius: 10px;
}
#join-now{
    width: 80px;
    background-color: var(--hotpink);
    color: white;
    padding: 2px 15px;
    border-radius: 10px;
}

/***Masterclass Lessons***/
.lessonthumb{
    background-color: white;
    width: 200px;
    padding: 10px;
    border-radius: 10px;
}
.skill-level-button{
    background-color: var(--hotpink);
    border-radius: 10px;
    padding: 10px;
}
.rating{
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: bold;
    font-style: normal;
    color: white;
}
.skill-level{
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    color: black;
}

/***LESSONS PAGE***/
.page-title{
    background-color: var(--tan);
    color: white;
    font-size: 48px;
    height: 90px;
    text-shadow: 0 0 15px rgb(109, 93, 93);
}
.ml-cards{
    background-color: var(--khaki);
    padding: 10px;
    border-radius: 10px;
    margin-left: 10px; 
}
.enroll-button{
    background-color: var(--hotpink);
    color: white;
    width: 50px;
    padding: 5px 15px;
    border-radius: 10px;
}

/***Footer***/
footer{
    background-color: var(--tan);
}
#footer-logo img{
    width: 200px;
}
#footer-text{
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    margin: 0;
}


