* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Montserrat, sans-serif;
  background-color: #003049;
}

.nav_links,
li {
  list-style: none;
  text-decoration: none;
  color: #003049;
}

.logo {
  font-weight: 600;
  font-size: 24px;
  cursor: pointer;
}
.logo:hover {
  text-decoration: overline;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  background-color: #fcbf49;
}

nav ul li {
  margin: 0 50px;
  display: inline-block;
  font-weight: 500;
}

/* button {
  padding: 10px 50px;
  background-color: #003049;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  color: white;
  box-shadow: 3px 3px 12px #0e153a;
} */

.cta {
  padding: 10px 50px;
  border: 2px solid #003049;
  border-radius: 50px;
  text-decoration: none;
  color: #003049;
}
.cta:hover {
  background-color: #003049;
  color: white;
}
