@import url('https://fonts.googleapis.com/css2?family=Martian+Mono:wght@100..800&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Quicksand:wght@300..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Quicksand", sans-serif;
  background-image: url('/img/JuliaBG.svg');
  background-size: cover;
  color: #333;
  line-height: 1.6;
  padding: 20px;
  text-align: center;
  font-weight: 400;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  padding-bottom: 80px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  border-radius: 4px;
}

.hero {
  text-align: center;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #000;
  font-family: "Quicksand", sans-serif;
}

.content {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.content p {
  margin-bottom: 10px;
}

.highlight {
  font-weight: bold;
  color: #FABC98;
}
.adress {
  font-family: "Quicksand", sans-serif;
  line-height: 1.6;
  padding: 20px;
  text-align: center;
}

.footer {
  text-align: center;
  margin-top: 20px;
}

.footer a {
  text-decoration: none;
  color: #fff;
  background-color: #FABC98;
  font-weight: 700;
  padding: 10px;
  font-size: 20px;
  font-family: "Quicksand", sans-serif;
  margin-top: 40px;
  border-radius: 4px;
}

.footer a:hover {
  opacity: 70%;
}