* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: Georgia, serif;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
}

.overlay {
    background: rgba(0,0,0,0.55);
    min-height: 100vh;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 4rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px black;
}

h4 {
	font-family: Georgia;
    letter-spacing: 1px;
    margin-bottom: 20px; 
    text-shadow: 1px 1px 4px black;
}

.topic {
    font-size: 3rem;
    color: gold;
    text-transform: capitalize;
    text-shadow: 2px 2px 6px black;
}

.calendar-section {
    text-align: center;
    margin-bottom: 40px;
}

.calendar-section input,
.calendar-section button {
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    margin: 5px;
    font-size: 1rem;
}

.calendar-section button {
    cursor: pointer;
    background: gold;
    color: black;
    font-weight: bold;
}

.scriptures {
	font-family: Arial;
    max-width: 1000px;
    margin: auto;
}

.scripture-tile {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(7px);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 4px 25px rgba(0,0,0,0.35);
}

.symbol-section {
    text-align: center;
    margin-bottom: 8px;	
}

.verse-text {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 18px;
    text-shadow: 1px 1px 3px black;
}

.citation {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
	text-align: right; 
}

.religion {
    color: gold;
    font-weight: bold;
    font-size: 1.05rem;
}

footer {
    text-align: center;
    margin-top: 70px;
    padding-bottom: 30px;
    font-size: 1rem;
}

footer a {
    color: gold;
    text-decoration: none;
}