/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    // background-image: url('background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: white;
}

/* Header styles */
.header {
    background-color: rgba(51, 51, 51, 0.7);
    padding: 1px 0;
    text-align: center;
    color: white;
}

/* Subscription form styles */
.subscription-form {
    background-color: rgba(242, 242, 242, 0.7);
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    margin: 0 auto;
    color: white;
}

.subscription-form input[type="text"],
.subscription-form input[type="email"],
.subscription-form input[type="tel"],
.subscription-form input[type="submit"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.subscription-form input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

.subscription-form input[type="submit"]:hover {
    background-color: #45a049;
}

/* Message container styles */
.message-container {
    background-color: #4CAF50;
    color: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    text-align: center;
    margin-top: 20px;
}

/* Activity box styles */
.activity-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    color: black; /* Set the text color inside boxes to black for better contrast */
}

.activity-box {
    background-color: rgba(255, 255, 255, 0.8); /* White with 80% opacity */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(50% - 20px); /* Two boxes per row with space between */
    margin-bottom: 20px;
}

.activity-box p {
    margin: 0;
}
