body {
  margin: 0;
  background-color: #aaaaaa;
  color: rgb(0, 0, 0);
  font-family: "Monaco", monospace;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 200px;
  background-color: darkslategray;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
}

li {
  border-bottom: 1px solid #ddd;
  width: 100%;
}

li a, .dropbtn {
  display: block;
  padding: 14px 16px;
  color: white;
  text-align: left;
  text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: #0d00c1;
}

li:last-child {
  border-bottom: none;
}

li.dropdown {
  position: relative;
  display: block;
}

.dropdown-content {
  display: none;
  position: relative;
  background-color: #f9f9f9;
  min-width: 200px;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}



.dropdown-content a:hover {
  background-color: #f1f1f1;
}


.dropdown:hover .dropdown-content {
  display: block;
}


.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background-color: transparent;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 100px 10%;
  color: rgb(0, 0, 0);
  max-width: 1000px;
}

.intro {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.name {
  color: #1e00c6;
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
}

.highlight {
  color: #1e00c6;
}

.description {
  margin-top: 20px;
  font-size: 20px;
  color: #000000;
}
