body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.container {
}

.nav {
  background-color: rgb(32 139 202);
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
  color: white;
}

.nav ul li {
  list-style: none;
  cursor: pointer;
  border: 1px solid rgb(237, 237, 39);
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 1s;
}
.nav ul li:hover {
  background-color: yellow;
  color: rgb(32 139 202) !important;
}

.nav ul li:first-child {
  background-color: yellow;
  color: rgb(32 139 202) !important;
}
.landing img {
  height: auto;
  max-height: calc(100vh - 185px);
  width: 100%;
  object-fit: cover;
  object-fit: cover;
}

.footer {
  height: 100px;
  background-color: rgb(32 139 202) !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.footer a {
  color: white;
  list-style: none;
  border: 1px solid rgb(237, 237, 39);
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 1s;
  cursor: pointer;
  text-decoration: none;
  font-size: 20px;
}

.footer a:hover {
  background-color: yellow;
  color: rgb(32 139 202);
}
a {
  text-decoration: none;
  transition: all 1s;
  color: white;
}

a:hover {
  text-decoration: none;
  color: rgb(32 139 202);
}
