/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h1, h2, h3, .tagline {
	font-family: "Exo 2", sans-serif;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
}

.image-container {
    flex: 0 0 512px; /* Fixed size for the image */
    display: flex;
    justify-content: center;
    align-items: center;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.content {
    flex: 1;
    margin-left: 20px; /* Space between image and content */
    text-align: left;
    max-width: 500px;
}

h1 {
    color: #00BFFF; /* Neon blue */
    font-size: 2.5em;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2em;
    color: #a9a9a9;
    margin-bottom: 20px;
    line-height: 1.5em; /* Adds space between the lines */
}

form {
    background-color: #222222;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

input, button, textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    border: none;
    background-color: #2f4f6f; /* Dark blue-gray color */
    color: #e0e0e0;
    font-size: 1em;
}

button {
    cursor: pointer;
    background-color: #00BFFF; /* Neon blue button */
    color: #ffffff; /* White text for better contrast */
    border: none;
    padding: 10px 15px;
    font-size: 1.1em;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #0099cc; /* Darker blue for hover */
    transform: scale(1.05); /* Slightly enlarge the button on hover for a better interactive feel */
}

button:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 5px #00BFFF; /* Add a blue glow when focused */
}

textarea {
    resize: vertical;
}

/* For screens smaller than 1024px */
@media (max-width: 1024px) {
    header {
        flex-direction: column; /* Stack content on top of the image */
        text-align: center;
    }

    .image-container {
        margin-bottom: 20px;
    }

    .content {
        text-align: center;
        margin-left: 0;
    }

    img {
        max-width: 70%; /* Reduce image size on small screens */
        height: auto;
    }
}
