body{
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
body .container{
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
body .container .title{
    width: 60%;
    /* display: flex;
    flex-direction: column;
    align-items: center; */

}
h2{
    text-align: center;
}
p{
    font-size: 20px;
   
}
p>span{
    font-weight: 600;
}

table{
    width: 100%;
    
}
table tr:nth-child(even) {
    background-color: #f2f2f2; 
}

table tr:nth-child(odd) {
    background-color: #ffffff; 
}

a{
    font-size: large;
    text-decoration: none;
    color: black;
}
a:hover{
    color: blue;
}



/* pages */
ol{
     font-size: 20px;
     line-height: 30px;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.list>li:nth-child(even) {
    background-color: #f2f2f2; 
}

.list>li:nth-child(odd) {
    background-color: #ffffff; 
}



@media screen and (max-width: 768px) {
    h1{
        font-size: 1.5rem;
    }
    
    h2{
        font-size: 1.3rem;
    }

}