* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  background-image: url('../images/background.jpg');
  background-position: bottom left;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% auto;
  color: #cccccc;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 20px;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 14%;
  margin-right: 10%;
}

.logo {
  max-width: 540px;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

p {
  color: #bdbdbdbd;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.15em;
}

footer {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #aaaaaa;
  font-size: 14px;
}

.contact {
  color: #aaaaaa;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
}

.contact:hover {
  color: #dddddd;
}

.envelope-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .image-placeholder {
    width: 300px;
    height: 225px;
  }

  p {
    font-size: 20px;
  }

  footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
