body{
    background-color: #f5fff7;
    font-family: Arial, sans-serif;
    margin: 40px;
    color: #333;
}

h1{
    color: #2e8b57;
    text-align: center;
}

h3{
    color: #228b22;
    margin-top: 25px;
}

p{
    font-size: 18px;
    line-height: 1.6;
}

ul, ol{
    background-color: #ffffff;
    padding: 15px 30px;
    border-radius: 10px;
    width: fit-content;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

img{
    border-radius: 12px;
    border: 3px solid #2e8b57;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

a{
    text-decoration: none;
    color: white;
    background-color: #2e8b57;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: bold;
}

a:hover{
    background-color: #246b45;
}