* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

body {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 30px;
    font-size: 28px;
}

.verse-container {
    background-color: #f9f9f9;
    border-left: 4px solid #3498db;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    text-align: left;
}

.verse-text {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
    text-align: left;
}

.verse-reference {
    font-style: italic;
    color: #777;
    font-size: 16px;
    text-align: right;
}

button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .verse-text {
        font-size: 18px;
    }
}