body{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size:large;
    outline:3px dotted #000000; /*css outline1*/
    outline-offset:2px; /*css outline1*/
    margin: 10px;
    padding: 10px;
    min-height:auto;
    background-image: linear-gradient(to bottom, rgb(146, 114, 107) 
                      0%, rgb(224, 201, 185) 100%); /*css linear gradient*/
    background-size: 100%;
    background-repeat:no-repeat;
}

#borderimg{/*css border-image*/
    border: 50px solid transparent; /* Required for border-image */
    padding: 50px;
    border-image: url('../images/border.png') 100% round;
}

h1{ /*css rounded corners*/
    text-align:center;
    border-radius: 25px;
    border: 2px solid #6b482a;
    background-color:#dac1b8;
    padding: 20px;
    width:fit-content;
    height:fit-content;
    text-shadow:1.5px 1.5px rgb(255, 255, 255); /*css shadow*/
}

ol{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size:medium;
    color:#2e513b;
    border-radius: 20px;
    border: 2px solid #2e513b;
    padding: 100px;
    width:fit-content;
    height:fit-content;
    background-color: rgba(217, 255, 0, 0.186) /*css color*/
}