* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: url('Images/nikita-kachanovsky-OVbeSXRk_9E-unsplash.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.container {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 15px;
  max-width: 500px;
  width: 100%;
}

.logo {
  max-width: 120px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.socials {
  margin-bottom: 30px;
}

.socials a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.5em;
  transition: transform 0.3s;
}

.socials a:hover {
  color: #00bcd4;
  transform: scale(1.2);
}

form {
  text-align: left;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: none;
  border-radius: 5px;
}

input[type="submit"] {
  background-color: #00bcd4;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

input[type="submit"]:hover {
  background-color: #0097a7;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }

  .container {
    padding: 25px;
  }
}
.logo{
    width: 100%;
    height: auto;
    margin-bottom: 20px: ;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 120vh; /* Ensures scroll */
  padding-bottom: 40px;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.contact-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #f8cb03;
  max-width: 400px;
  width: 90%;
  text-align: center;
  font-size: 1em;
}

.contact-box a {
  color: #0dcbe4;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}
