/* Styling for the whole page */
body {
    background-color: #66CCFF; /* Your favorite blue color */
    font-family: Arial, sans-serif;
    padding: 30px;
    line-height: 1.6;
}

/* Requirement: Image border */
img {
    border: 2px solid #333;
}

/* Requirement: Position image next to text */
.inline-img {
    width: 40px;
    vertical-align: middle;
    margin-right: 10px;
    border: none; /* No border for the small icon */
}

/* Requirement: Customized bullets (Stars) */
.star-list {
    list-style-image: url("https://cdn0.iconfinder.com/data/icons/typicons-2/24/star-64.png");
    margin-left: 45px;
}

/* Copyright / Credit styling */
.copyright {
    font-size: 11px;
    color: #444;
    margin-top: 2px;
    font-style: italic;
}

/* Spacing for players */
audio, video {
    margin-top: 10px;
    margin-bottom: 20px;
    display: block;
}

/* Headers */
h1, h2 {
    color: #222;
}