
.container {
    max-width: 800px;
    margin: 5% auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 10%;
}

h1 {
    text-align: center;
    margin-bottom: 30px; 
}

h2 {
    margin-top: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

p, ul {
    font-size: 1rem;
}

p{ text-indent: 1em;}

section li {
    list-style-type: disc;
    margin-left: 20px;
}

li {
    margin-bottom: 5px;
}

section {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .container{
        max-width: 350px;
        margin-top: 30%;
    }
    h1{
        font-size: 30px;
    }
}