body {
  background-color: black;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container-mail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 300px;
  height: auto;
}

.mailto-link {
  display: inline-block;
  padding: 10px 30px;
  margin-top: 30px;
  background-color: white;
  color: black;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.mailto-link:hover {
  background-color: #03a9f4;
  color: white;
}

.social-menu {
  display: flex;
  justify-content: flex-end;
}

.social-menu ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.social-menu li {
  margin: 0 3px;
}

.social-menu a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.social-menu a:hover {
  transform: scale(1.1);
}

.social-menu img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer {
  padding: 10px;
  background-color: Black;
  border-top: 1px solid #ccc;
  padding: 10px 0;
}

.footer-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-menu-left {
  color: #666;
  font-size: 14px;
}

.footer-menu-right {
  font-size: 14px;
}

.footer-menu-right a {
  color: #666;
  text-decoration: none;
  padding: 0 10px;
}

.footer-menu-right a:hover {
  color: White;
  text-decoration: underline;
}
