* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 30px;
}

p {
  color: #9f9d9b;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.15em;
}

footer {
  background-color: transparent;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #9f9d9b;
  font-size: 14px;
}

.contact {
  color: #9f9d9b;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
}

.contact:hover {
  color: #c5bcb6;
}

.envelope-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 768px) {
  main {
    align-items: center;
    padding: 10px;
  }

  p {
    font-size: 20px;
  }

  footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
