/* affirmations.css */

/* General styles for the page */
.intro {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    margin: 2rem;
}

.angel-number {
    margin: 2rem auto; /* Center the section horizontally */
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    width: 75%; /* Contain in the middle 75% of the screen */
}

.angel-number h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.left-column,
.right-column {
    flex: 1;
    min-width: 45%;
    margin: 1rem 1%;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 1rem;
}

.left-column h3,
.right-column h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.left-column ul,
.right-column ul {
    list-style-type: none;
    padding: 0;
}

.left-column li,
.right-column li {
    margin: 0.5rem 0;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(95, 75, 139, 0.1);
    font-size: 1.2rem; /* Increase font size */
}

.left-column li:hover,
.right-column li:hover {
    background: rgba(95, 75, 139, 0.2);
}

.intro p,
.left-column p,
.right-column p {
    font-size: 1.2rem; /* Increase font size */
}

/* Mobile Styles */
@media (max-width: 768px) {
    .intro {
        padding: 1rem; /* Reduce padding for mobile */
        margin: 1rem; /* Reduce margin for mobile */
    }

    .angel-number {
        padding: 1rem; /* Reduce padding for mobile */
        margin: 1rem; /* Reduce margin for mobile */
        width: 90%; /* Increase width to 90% for mobile */
    }

    .columns {
        flex-direction: column; /* Stack columns vertically on mobile */
    }

    .left-column,
    .right-column {
        min-width: 100%; /* Make columns full width on mobile */
        margin: 0.5rem 0; /* Reduce margin for mobile */
    }

    .left-column h3,
    .right-column h3 {
        font-size: 1.5rem; /* Adjust heading size for mobile */
    }

    .left-column li,
    .right-column li,
    .intro p,
    .left-column p,
    .right-column p {
        font-size: 1rem; /* Adjust font size for mobile */
    }
}
