/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Raleway', sans-serif;
  background: linear-gradient(135deg, #1b1b2f, #162447);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 20px;
  max-width: 600px;
}

.logo {
  font-size: 3rem;
  margin-bottom: 0.5em;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo span {
  color: #00848A;
}

.logo2 {
  font-size: 2rem;
  /* margin-bottom: 0./5e/m; */
  font-weight: 700;
  letter-spacing: 1px;
  margin: -30px 0 40px 0;
}

.logo2 span {
  color: #00848A;
}

h2 {
  font-size: 1.5rem;
  /* margin-bottom: 0.5em/; */
  animation: fadeIn 2s ease-in;
}

p {
  font-size: 1rem;
  margin-bottom: 2em;
  color: #cccccc;
  animation: fadeIn 3s ease-in;
}

.email-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2em;
}

.email-form input {
  padding: 10px 15px;
  border-radius: 25px;
  border: none;
  outline: none;
  width: 60%;
  max-width: 300px;
}

.email-form button {
  padding: 0px 20px;
  border-radius: 25px;
  border: none;
  /* background-color: #e43f5a; */
  background-color: #00848A;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.email-form button:hover {
  /* background-color: #ff5964; */
  background-color: #00848A;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials a {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.socials a:hover {
  opacity: 1;
}

.mailto-button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 25px;
  /* background-color: #e43f5a; */
  background-color: #00848A;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.mailto-button:hover {
  /* background-color: #ff5964; */
  background-color: #00848A;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
