body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: url("https://cdn.prod.website-files.com/6376980d89260e9c2cdee566/64df81d6200a0e03c45e823a_famous-buildings-round-the-world-travel-wallpaper.jpg")
    no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.5em;
  margin: 20px 0;
}

p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.social-links {
  margin: 20px 0;
}

.social-links a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.5em;
  text-decoration: none;
}

.contact-button-container {
  text-align: center;
  margin: 20px 0;
}

footer {
  background-color: #232f3e;
  color: white;
  text-align: center;
  position: fixed;
  width: 100%;
  bottom: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 20px;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}

/* Btn nous contacter*/

.contact-button {
  display: inline-flex;
  align-items: center;
  background-color: #ff6f61;
  /* Corail */
  color: #fff;
  border: none;
  border-radius: 50px;
  /* Rounded corners */
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition:
    background-color 0.3s,
    transform 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Subtle shadow for depth */
  text-decoration: none;
}

.contact-button .icon {
  margin-right: 10px;
  font-size: 20px;
  /* Icon size */
  transition: transform 0.3s;
  /* Smooth transition for icon */
}

.contact-button:hover {
  background-color: #0056b3;
  /* Darker blue on hover */
  transform: translateY(-3px);
  /* Lift button slightly */
}

.contact-button:hover .icon {
  transform: scale(1.2);
  /* Enlarge icon on hover */
}

.contact-button:active {
  background-color: #004494;
  /* Even darker blue when clicked */
  transform: translateY(0);
  /* Reset lift effect */
}

.contact-button:focus {
  outline: none;
  /* Remove default outline */
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
  /* Custom focus outline */
}
