* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.4;

    margin: 0;
    padding: 0;

    background-image: url("Images/Confetti.png");
    background-size: cover;
    /* fills screen */
    background-repeat: repeat;
    /* no tiling */
    background-position: center;
}

.subheading {
    font-family: 'Courier New', Courier, monospace;
}


.main {
    margin: 40px auto;
    text-align: center;
    background-color: rgba(255, 255, 255, 0);
    /* soft white overlay */
    padding: 20px;
    max-width: 800px;
    border-radius: 10px;
}

.main img {
    max-width: 75%;
    height: auto;
    border-radius: 20px;
}

.para {
    font-family: 'Metamorphous'
}

.defintion {
    font-weight: bold;
}

.meditation {
    font-family: 'Times New Roman', Arial, sans-serif;
    font-weight: bold;
}

.theme {
    background-color: #f9f9f9;
    padding: 0.5rem 1.5rem;
    text-align: center;
}

.grey-line {
    border: none;
    border-top: 1px solid grey;
    margin: 10px 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns */
    gap: 0rem;
}

/* Grid items (links with image + label) */
.grid-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    font-family: Arial, sans-serif;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.grid-item img {
    width: 100%;
    height: 100px;
    /* control size */
    object-fit: cover;
    margin: 0 auto;
}

.grid-item span {
    padding: 0.25rem;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
}

.bubble {
    background-color: #c5defa;
    padding: 14px 18px;
    border-radius: 12px;

    /* accent line */
    color: #333;
    max-width: 500px;
}

.warning-box {
    display: flex;
    align-items: flex-start;
    /* aligns top of text with icon */
    gap: 10px;
}

.warning-icon {
    font-size: 30px;
    flex-shrink: 0;
    /* prevents icon from shrinking */
}

.warning-text {
    flex: 1;
    /* takes remaining space */
}

.celebration {
    text-align: center;
    font-size: 50px;
    /* 👈 control size here */
    margin-top: 20px;

}


footer {
    text-align: center;
    margin: 40px 0;
}

footer a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}