/* CSS HEX 

--ucla-blue: #3977A8ff;
--indigo-dye: #305069ff;
--cambridge-blue: #7C9D95ff;
--davys-gray: #555355ff;
--reseda-green: #71836Cff;
*/
colors {
  color: #3977a8ff;
  color: #305069ff;
  color: #7c9d95ff;
  color: #555355ff;
  color: #71836cff;
}
* {
  margin: 0px;
  border: 0px;
  padding: 0px;
  background-color: #305069ff;
}
main {
  background-color: #71836cff;
  height: 100vh;
}
li,
a {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  color: rgb(138, 161, 155);
  text-decoration: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10% 0px;
}
.headers {
  height: fit-content;
  background-color: transparent;
  color: #e9eed2;
  -webkit-text-stroke-color: black;
}
.logo {
  width: 250px;
}
.nav_links {
  list-style: none;
}
.nav_links li {
  display: inline-block;
  padding: 0 2rem;
}
.nav_links li a {
  transition: all 0.3s ease 0s;
}
.nav_links li a:hover {
  color: rgb(227, 240, 237);
}
.h1 {
  padding-top: 2rem;
  font-size: 3.5rem;
  -webkit-text-stroke-width: 1px;
}
.container {
  display: flex;
  justify-content: center;
  height: fit-content;
  width: 100%;
}
.container_1 {
  background-color: #71836cff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  flex-direction: column;
  height: fit-content;
  text-align: center;
}
.contact-card {
  width: 350px;
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
  margin: 25px;
}
.contact-card h2 {
  color: #333;
  font-size: 2rem;
}
.contact-card p {
  color: #4f4e4e;
  font-size: 1.5rem;
  background-color: #f0f0f0;
}
.style_remove {
  background-color: transparent;
}
.hover:hover {
  cursor: pointer;
}
.footer {
  height: fit-content;
  display: flex;
  justify-content: end;
  text-align: left;
  border: 1rem;
}
.footer a {
  margin: 0.5rem 1rem;
}
