body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 50px;
    background: #f7f7f7;
}

h1 {
    margin-bottom: 40px;
}

.templates {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.template-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 220px;
    padding: 20px;
    background: white;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}

.template-card:hover {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.template-card img {
    max-width: 100%;
    border-radius: 4px;
    margin-bottom: 15px;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

input[type="text"],
input[type="email"],
textarea {
  font-family: 'Arial', sans-serif;   /* Change font */
  font-size: 16px;                    /* Adjust size */
  color: #333333;                     /* Text color */
  letter-spacing: 0.5px;              /* Space between letters */
  font-weight: 500;                   /* Text weight */
  padding: 10px;                      /* Inner spacing */
  border: 1px solid #ccc;             /* Border style */
  border-radius: 6px;                 /* Rounded corners */
}
