body {
  font-family: "Arial Nova Light", Arial, Helvetica;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

@font-face {
  font-family: "Arial Nova Light";
  src: url("fonts/ArialNova-Light.ttf") format("truetype");
}

.contact-container {
  padding: 30px;
  width: 100%;
  max-width: 400px;
  text-align: left;
  height: 90vh;
  margin-top: 10vh;
  animation: fadeIn 0.5s forwards;
}

h2 {
  margin-bottom: 30px;
  font-size: 16px;
  text-decoration: none;
  color: #000000;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-style: italic;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  text-align: left;
  margin: 10px 0 5px;
  font-size: 12px;
  text-decoration: none;
  color: #000000;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-style: italic;
}

input,
textarea {
  width: 100%;
  margin-bottom: 10px;
  font-size: 12px;
  background-color: #f4f4f4;
  border: none;
}

button {
  background-color: #000000;
  border: none;
  cursor: pointer;
  font-size: 12px;
  text-decoration: none;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-style: italic;
  padding: 5px;
}

button:hover {
  opacity: 0.1;
}

.icons {
  margin-top: 20px;
}

.icons a {
  margin: 0 10px;
  display: inline-block;
}

.icons img {
  width: 30px;
  height: 30px;
}

.icons img:hover {
  opacity: 0.1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
  }
}