/* Resetting default styles */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, ul, li {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* Body styles */
body {
    font-family: 'Josefin Sans', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    padding: 20px;
}

/* Container styles */
#container {
    max-width: 800px;
    margin: 0 auto;
}

/* Header styles */
h1 {
    font-family: 'Actor', sans-serif;
    font-size: 36px;
    color: #ff7f50;
    margin-bottom: 20px;
}

/* Link styles */
a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}

/* List styles */
ul {
    list-style-type: none;
}

/* List item styles */
li {
    margin-bottom: 10px;
}

/* Paragraph styles */
p {
    margin-bottom: 15px;
}