body {
  width: 80%;
}

header {
  border-bottom: 2px solid #dddddd;
  margin-top: 60px;
}

header h1 {
  margin-bottom: 30px;
}

header p {
  font-size: 24px;
  margin-bottom: 40px;
}

header .browse_button {
  background-color: black;
  color: #fff;
  border-radius: 50px;

  padding: 15px 25px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 40px;
}

h1.course-heading {
  margin: 50px 0;
}

ul {
  list-style: none;
  width: 50%;
}

@media (max-width: 1000px) {
  ul {
    width: 100%;
  }
}

ul a {
  text-decoration: none;
  color: #111;
}

ul a img {
  transition: all 100ms ease-in-out;
}

ul a:hover {
  text-decoration: underline;
}

ul a:hover img {
  transform: translateX(3px);
}

ul li {
  border: 2px solid #dddddd;
  padding: 25px 40px;
  margin-bottom: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}

ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

ul li a img {
  width: 20px;
}
