:root{
    --h1-typeface: "Playfair Display", serif;
    --h2-typeface: "Merriweather Sans", sans-serif;
    --h3-typeface: "Roboto Condensed", sans-serif;
    --h4-typeface: "Reddit Sans", sans-serif;
    --p-typeface: "Montserrat", sans-serif;
    --button-typeface: "Open Sans", sans-serif;
    --top-typeface: "PT Sans Narrow", sans-serif;
 
    --brightest-white: #f5f4f4;
    --white: #f0f0f0;
    --light-grey: #e6e6e6;
    --grey: #d3cfcf;
    --dark: #303030;
    --darkest-dark: #1e1e1e;
    --background-color: #131519;
    --h2-color: #8f5268;
    --link-color: #b14163;
    --color-link-hover:  #7b2e45;
    --checkmark-color: rgb(41, 92, 41);
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

/* BEGIN CONTAINER STYLING */

body{
    background-color: var(--background-color);
    width: 100%;
    height: 100%;
    overflow: hidden;
}

main{
    position: relative;
    z-index: 1;
}

main > header{
    margin-left: 5vw;
    padding-top: 22vh;
    padding-left: 30px;
}

.about-me{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    background-color: var(--brightest-white);
    max-width: auto;
    margin: 40px 5vw;
    margin-bottom: 0;
    gap: 1em;
    padding: 30px;
    border-radius: 20px;
    height: 500px
}

.bullet-points{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

.skills{
    box-shadow: 0px 0px 5px 0px rgba(92, 92, 92, 0.75);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    min-width: 200px;
    background-color: var(--white);
}

.education {
    box-shadow: 0px 0px 5px 0px rgba(92, 92, 92, 0.75);
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    min-width: 200px;
    background-color: var(--white);
}

.education-content{
    padding: 20px;
}

.diplomas{
    border-radius: 20px;
    padding: 20px;
    padding-left: 0;
}


/* END CONTAINER STYLING */

/* START HEADER STYLING */

h1{
    font-family: var(--h1-typeface);
    font-size: clamp(20px, 8vw, 60px);
    color: var(--brightest-white);
    font-weight: 200;
    margin: 0 auto;
}

h2{
    font-family: var(--h2-typeface);
    font-size: clamp(15px, 4vw, 30px);
    color: var(--white);
    font-weight: 300;
}

h3{
    font-family: var(--h3-typeface);
    font-weight: 600;
    font-size: clamp(40px, 4vw, 60px);
}

h4{
    font-family: var(--h4-typeface);
    font-weight: 350;
    color: var(--white);
    font-size: 30px;
}

.skills > header{
    background-color: var(--dark);
    padding: 20px;
}

.education > header{
    background-color: var(--dark);
    padding: 20px;
    text-align: center;
}

.education-content > header{
    display: flex;
}

.diplomas > header{
    font-size: .8em;
    font-family: var(--p-typeface);
    font-weight: 500;
    margin-bottom: 10px;
}

/* END HEADER STYLING */

/* ELEMENT STYLING */

.skills > ul {
    list-style-type: none;
    text-align: left;
    padding: 20px;
}

.diplomas > ul{
    margin-left: 40px;
}
.skills > ul > li{
    font-family: var(--h1-typeface);
    font-weight: 600;
}

.diplomas > ul> li{
    font-family: var(--p-typeface);
    font-size: .7em;
    padding: 10px;
}

.diplomas li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.diplomas li.show {
    opacity: 1;
    transform: translateY(0);
}


li > span {
    color: var(--checkmark-color);
    padding-right: 10px;
}

.skills > ul > li{
    padding-bottom: 20px;
}

.skills > ul > li:last-child{
    padding-bottom: 0px;
}

p{
    font-family: var(--p-typeface);
    font-weight: 300;
    font-size: 20px;
}

.overview > p {
    padding-top: 10px;
    font-size: 18px;
}

.education-content > header > p{
    font-weight: 700;
    font-family: var(--h2-typeface);
    font-size: 1em;
    text-align: left;
}

.number{
    font-weight: 700;
    margin-left: 15px;
}

.checkmark {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  stroke-dasharray: 24; /* total path length (approx) */
  stroke-dashoffset: 24; /* start hidden */
  animation: draw 0.5s forwards; /* animate forward */
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
