body{
    margin:0;
    font-family: "Rubik", sans-serif;
    line-height:1.6;

    display:flex;
    flex-direction:column;
    min-height:100vh;
}

.contact {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

.contact h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.contact p {
  text-align: center;
  margin-bottom: 2rem;
  color: #666;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input,
textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #007bff;
}

button {
  width: 100%;
  padding: 0.75rem;
  border: none;
  background: #007bff;
  color: white;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #0056b3;
}

main{
    flex:1;
}

header{
    background:#222;
    color:white;
    padding:20px;
    text-align:center;
}

nav{
    background:#333;
    padding:10px;
    text-align:center;
}

nav a{
    color:white;
    margin:0 15px;
    text-decoration:none;
    font-weight:bold;
}

nav a:hover{
    text-decoration:underline;
}

section{
    max-width:900px;
    margin:auto;
    padding:40px 20px;
    text-align: center;
}

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
}