* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('bg.svg');
    background-repeat: repeat;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    padding: 20px;
}

.content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content h1 {
    color: #333;
    margin-bottom: 20px;
}

.content p {
    color: #666;
    line-height: 1.6;
}

p {
    padding-bottom: 15px;
}

p.link {
    padding-bottom: 8px;
}

h2 {
    padding-bottom: 15px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}