body {
  background-color: grey;
  margin: 0;
  padding: 0;
  color: #333;
}

.contact-container {
  max-width: 700px;
  margin: 50px auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h1 {
 /* font-size: 2.2em; */
  color: #222;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Marck Script', cursive;
  font-size: 38px;
}

.contact-container p {
/*  font-size: 1.2em; */
  line-height: 1.6;
  font-family: 'Marck Script', cursive;
  font-size: 28px;
}

.contact-links {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contact-links li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.contact-links a {
  color: #0066cc;
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}

/* img under the text */

.down-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  padding: 10px;
  max-width: 100%;
}

.down-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}