html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}
body {
    background-image: url("https://wallpapers.com/images/high/milk-and-mocha-bears-yellow-moon-ncidl5vyw5basbal.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
}
h1 {
    color: #333;
    font-size: 1.5em;
}
.daily-message {
    color: #ff00ee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px auto;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #ffffffb9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.prayer-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px auto;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.prayer-time .english {
    flex: 1;
    text-align: left;
}
.prayer-time .time {
    flex: 1;
    text-align: center;
}
.prayer-time .korean {
    flex: 1;
    text-align: right;
    color: #000000;
}
.next-prayer {
    background-color: #ff00eea7;
    color: #ffffff;
}
.next-prayer .korean {
    color: #ffffff;
}
@media (min-width: 600px) {
    h1 {
        font-size: 2em;
    }
    .prayer-time {
        padding: 30px;
    }
}
