body {
    background-image: url('background.php');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 20px;
    color: #FF5722;
}
.dailyVerses.bibleVerse{margin-top: .5em;
}.dailyVerses.bibleVerse a{font-weight: bold;
}


/* 视频容器样式 */
.video-frame, .video-container {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);   
}

video {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

a {
  color: #00FF00; /* Bright green color for hyperlinks */
  text-decoration: none; /* Removes underline from links */
}

a:hover {
  text-decoration: underline; /* Underline on hover for better visibility */
}

@media (min-width: 601px) and (max-width: 1200px) {
    video {
        height: 300px; /* 平板设备固定高度 */
    }
}

@media (min-width: 1201px) {
    video {
        height: 400px; /* 桌面设备固定高度 */
    }
}

@media only screen and (max-width: 600px) {
  body {
    background: url('background.php') no-repeat center center fixed;
    background-size: cover;
  }
}
