body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light text */
    scroll-behavior: smooth; /* Smooth scroll for anchor links */
}

.container, .intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.intro {
    min-height: 100vh; /* Full viewport height */
}

.container {
    min-height: 100vh; /* Full viewport height */
}

.intro h1, .intro p {
    margin-bottom: 20px; /* Spacing for readability */
}

.contact-link {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-bottom: 20px; /* Additional spacing if needed */
}

.contact-link:hover {
    background-color: #0056b3;
}

form {
    border: 1px solid #333;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    background: #242424;
    max-width: 400px;
    width: 90%; /* Responsive width */
}

.form-group {
    margin-bottom: 15px;
}

label, input[type="text"], input[type="email"], textarea, button {
    width: 90%;
    margin-bottom: 10px;
}

input[type="text"], input[type="email"], textarea {
    padding: 10px;
    border: 1px solid #555;
    border-radius: 4px;
    background: #333;
    color: #fff;
}
textarea {
    min-height: 200px; /* Adjust based on your design needs */
    /* Existing styles... */
}
button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

p {
    max-width: 90vw; /* Ensures max width of 80% of the viewport width */
}