@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arvo", serif;
  font-weight: 400;
}

body{
  font-family: "Courier New" monospace;
  background-image: url("assets/Grid-Pattern-PNG-Image-Background.png");
  background-color: #f4f1de;
  background-size: 200px;
}

.header {
  padding: 30px 5%;
  border-bottom: 3px solid #e07a7f;
  background-color: #adbca5;
}

.logo {
  font-size: 32px;
  text-decoration: none;
  color: rgb(61, 64, 91);
}

.nav_links{
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav_links li a {
  text-decoration: none;
  color: #3d405b;
}

.hero {
  border-radius: 20px;
  border: 3px dashed #e07a7f;
  margin: 3% 3%;
  padding: 20px 20px 20px 20px;
  background-color: #f2cc8f;
}
