@import url("https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&display=swap");

* {
  font-family: "Mukta", sans-serif, Arial, Helvetica;
  box-sizing: border-box;
  margin: none;
  padding: none;
}

h1 {
  font-size: 4rem;
  color: #201f21;
  line-height: 1.2;
}

h2 {
  font-size: 2.4rem;
  color: #333036;
  line-height: 0.2;
}

h3 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 0.2;
}

p {
  font-size: 1.4rem;
  font-weight: 200;
  color: #201f21;
  line-height: 1.8;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f4f4f4;
  border-bottom: .25px solid #A6A8B3;
  padding: 0px 80px;
}

.navbar .links a {
  float: right;
  display: block;
  color: black;
  text-align: center;
  padding: 20px;
  text-decoration: none;
}

.navbar .logo a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 20px;
  text-decoration: none;
}

.navbar a:hover {
  background-color: #E7E8EA;
}

/* Clear floats after the navigation links */
.navbar::after {
  content: "";
  clear: both;
  display: table;
}

body {
  margin-top: 0;
  margin-left: 0
}

main {
  margin: 120px 80px;
}

.hero {
  margin: 20px 40px;
  justify-content: center;
}

.text-intro {
  flex: 1;
  padding: 20px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

.video-container iframe {
  position: absolute;
  padding: 20px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.assignment {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid darkblue;
    padding: 32px;
}


.footer {
  display: flex;
  max-width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f4f4f4;
  border-top: .25px solid #A6A8B3;
  padding: 0px 80px;
}