
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background-color: #3a4d4d;
  color: #222;
  margin: 0;
  padding: 0;
}

body, html {
  height: 150%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 50rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  background: white;
  box-shadow: 0 0 0.6rem rgba(0,0,0,0.1);
  border-radius: 0.5rem;
}

header h1 {
  margin-bottom: 0.625rem;
  color: #3a4d4d;
}

header p {
  margin-bottom: 1.875rem;
  line-height: 1.6;
}

.elérhetőség h2,
.form-section h2 {
  margin-top: 1.875rem;
  margin-bottom: 0.625rem;
  color: #333;
}

.elérhetőség ul {
  list-style: none;
  padding: 0;
}

.elérhetőség li {
  margin-bottom: 0.5rem;
}

a {
  color: #0077cc;
  text-decoration: underline;
  transition: color 0.3s ease;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: #6c757d;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-top: 0.93rem;
  margin-bottom: 0.31rem;
}

form input,
form textarea {
  padding: 0.625rem;
  border: 0.06rem solid #ccc;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

form button {
  margin-top: 1.25rem;
  padding: 0.75rem;
  font-size: 1rem;
  background-color: #3a4d4d;
  color: #fff;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
}

form button:hover {
  background-color: green;
}
