h1 {
    background-color: rgb(146, 137, 137);
    border: 3px solid black;
    border-width: 5px;
    border-color: blueviolet;
    color:rgb(202, 111, 26);
    font-size: 40px;
    font-family: 'Times New Roman', Times, serif; 
    text-align: center;
    width: 250px;
}

img {
    display: block;
    margin: auto;
    width: 250px;
    border: 4px solid black;
    border-radius: 10px;
}

table {
    margin: 10px auto;
    border-collapse: collapse;
}

th {
    border: 0;
    background-color: rgb(121, 35, 35);
    padding-left: 5px;
    padding-right: 5px;
    line-height: 40px;
    text-align: right;
}

td {
    text-align: center;
}

ul{
    list-style-type: square;
}

ol{
    list-style-type: upper-roman;
}

li{
    border: 1px solid rgb(233, 7, 7);
    list-style-position: inside;
}

.box{
    margin: 2rem auto;
    margin-bottom: 5vh;
    border: 4px;
    padding: 20px;
    font-family: 'Times New Roman', Times, serif; 
}

.info{
    font-size: 1em;
    background-color: rgb(122, 122, 122);
    border-left: 5px solid rgb(60, 255, 0);
}

.warning{
    background-color: rgb(122, 122, 122);
    border-left: 5px solid rgb(255, 0, 0);
}

.success{
    background-color: rgb(122, 122, 122);
    border-left: 5px solid rgb(4, 0, 255);
}

