@font-face {
  font-family: "General Sans Semi Bold";
  src: url(fonts/GeneralSans-Semibold.otf);
}

@font-face {
  font-family: "General Sans Regular";
  src: url(fonts/GeneralSans-Regular.otf);
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

h1 {
  font-family: "General Sans Semi Bold";
  margin: 0;
  margin-top: 20px;
  font-size: 3em;
  color: white;
}

h4 {
  font-family: "General Sans Regular";
  margin-left: 0;
  margin-right: 450px;
  color: white;
  font-size: 1.3em;
}

.navbar {
  background-color: transparent;
  font-family: "General Sans Semi Bold";
}

.navbar a {
  float: right;
  display: block;
  color: white;
  text-align: center;
  padding: 22px 60px 0 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #0cce6b;
  cursor: pointer;
}

#hero-banner {
  background-image: url(img/banner.jpg);
  background-size: cover;
  background-position: center;
}

.content {
  padding: 160px;
}

.explore-button {
  font-family: "General Sans Semi Bold";
  background-color: #0cce6b;
  color: black;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 1em;
  margin-top: 7px;
  border-radius: 5px;
}

.explore-button:hover {
  color: black;
  background-color: #04ba5d;
  cursor: pointer;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  padding-left: 40px;
  padding-right: 40px;
  justify-content: space-around;
}

.card {
  background-color: white;
  width: 31.3%;
  margin: 5px;
  margin-bottom: 25px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  transition: transform 0.2s;
}

.card-link {
  text-decoration: none;
}

.card:hover {
  transform: scale(1.03);
  cursor: pointer;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 5px 5px 0 0;
}

.card-content {
  padding: 20px;
}

.card-title {
  font-family: "General Sans Semi Bold";
  color: #333;
  margin: 0;
}

.card-text {
  font-family: "General Sans Regular";
  color: #666;
  font-size: 0.9em;
}

hr {
  width: 92%;
  margin-top: 30px;
}

footer {
  font-family: "General Sans Semi Bold";
  padding: 30px;
  margin-left: 30px;
}

.project-link {
  float: right;
  margin-right: 26px;
}

.project-link a {
  text-decoration: none;
  color: black;
  transition: color 0.3s ease;
}

.project-link a:hover {
  color: #0cce6b;
}

.card-heading {
  font-family: "General Sans Semi Bold";
  text-align: center;
  margin-top: 60px;
  margin-bottom: 50px;
}
