/*
  CSS RESET
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: normal;
  font-size: 100%;
}

ul,
ol {
  list-style: none;
}

img,
video {
  width: 100%;
}

a {
  text-decoration: none;
  margin: 0 0 48px 0;
}





/*
  STYLES
*/

.lateef-extralight {
  font-family: "Lateef", serif;
  font-weight: 200;
  font-style: normal;
}

.lateef-light {
  font-family: "Lateef", serif;
  font-weight: 300;
  font-style: normal;
}

.lateef-regular {
  font-family: "Lateef", serif;
  font-weight: 400;
  font-style: normal;
}

.lateef-medium {
  font-family: "Lateef", serif;
  font-weight: 500;
  font-style: normal;
}

.lateef-semibold {
  font-family: "Lateef", serif;
  font-weight: 600;
  font-style: normal;
}

.lateef-bold {
  font-family: "Lateef", serif;
  font-weight: 700;
  font-style: normal;
}

.lateef-extrabold {
  font-family: "Lateef", serif;
  font-weight: 800;
  font-style: normal;
}

h1 { 
  font-family: "Lateef";
  font-size: 96px;
  font-weight: bold;
  text-align: left;
  line-height: 85%;
  margin: 0 20px 0 0;
} 

h2 { 
  font-family: "Lateef";
  font-size: 40px;
  font-style: bold;
  text-align: left;
  line-height: 85%;
  margin: 0 20px 0 0;
} 

h3 { 
  font-family: "Lateef";
  font-weight: lighter;
  font-size: 24px;
  font-style: italic;
  text-align: left;
} 

body {
  background-color: black;
  padding-bottom: 40px;
  padding-right: 40px;
  padding-left: 40px;
}

.timeline {
  padding: 0;
  margin: 0;
}

.timeline-item {
  color: black;
  margin-bottom: 80px;
  transition: color 0.3s ease;
  
  a {
    display: flex;
    align-items: center;
  }
}

.timeline-item:hover {
  display: flex;
  color: rgb(255, 255, 255);
  align-items: flex-start;
  margin-bottom: 80px;
  align-items: center;
}

.text-container {
  max-width: 800px;
}

a {
  color: inherit;
  text-decoration: none;
}


header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 60px;

}

header img {
  max-height: 50px;
  cursor: pointer; 
}

