*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    /* font-family: Arial, sans-serif; */
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450vh;
    background-color: #f0f0f0;
}
.container {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 90%;
    max-width: 750px;
    border: 2px solid #a3d8f4;
}
ol{
    margin-left: 30px;
}
ul li{
    list-style: disc;
}
h1{
    text-align: center;
    color: blue;
}
h3{
    margin-top: 30px;
    text-align: center;
}
h4{
    margin-top: 20px;
}