/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #f4f4f4, #333);
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    width: 100%;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
}

.photo {
    max-width: 75%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    pointer-events: none;
}

p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
    text-align: left;
    color: #fff;
}

input[type="text"],
input[type="email"],
textarea {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    color: #333;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

button {
    width: 85%;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    .container {
        margin: 20px;
        padding: 15px;
    }
}
img.no-click {
	pointer-events: none;
}
