body {   
background-image: url('sew.png'); /* Replace with your image path */
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: #f0f0f0;
}

body{

/* background-color: #f7f3e8; */ /* Soft, natural background color */
    color: #4a4a4a;
    font-family: 'Amatic SC', cursive; /* Hand-drawn font style */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
   /* background-image: url('burlap-texture.png'); */
 /* Add a subtle texture image */
    background-size: cover;
}

.container {
    max-width: 600px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.85); /* Slightly transparent white overlay */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-family: 'Permanent Marker', cursive; /* More prominent header font */
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.countdown {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #d9534f; /* Accent color for urgency */
}

.signup-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.signup-form input {
    padding: 10px;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 5px;
    flex-grow: 1;
    max-width: 300px;
}

.signup-form button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #5cb85c; /* Action color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.signup-form button:hover {
    background-color: #4cae4c;
}

.social-links a {
    color: #4a4a4a;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #d9534f;
}

/* Add media queries for responsiveness */
@media (max-width: 600px) {
    .signup-form {
        flex-direction: column;
        align-items: center;
    }
    .signup-form input, .signup-form button {
        width: 100%;
        max-width: none;
    }
    h1 {
        font-size: 2rem;
    }
}