:root {
  --font1: "Poppins";
  --font2: "Playfair Display";
  --dark: white;
} 

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: black;
  margin: 0;
  background-color: black;
  font-family: var(--font1);
  overflow-x: hidden;
}

.flex, .flex__col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex__col {
  flex-direction: column;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

main {
  width: 100%;
     flex: 1;
}

.menu {
  position: fixed;
  top: 0;
  left: 50%;
  width: calc(100% - 80px);
  justify-content: space-between;
  margin: 40px 0;
  transform: translatex(-50%);
}

.menu a {
  font-size: 1.10vw;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
}

.menu ul {
  gap: 20px 60px;
}

        .contact-form {
            width: 400px;
            padding: 20px;
            border: 1px solid #000000; /* Black border */
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Black shadow */
            background-color: #ffffff; /* White background */
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
        }

        input, textarea {
            width: 100%;
            padding: 8px;
            box-sizing: border-box;
            border: 1px solid #000000; /* Black border */
            border-radius: 4px;
        }

        button {
            background-color: #000000; /* Black background */
            color: #ffffff; /* White text */
            padding: 10px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

