*{
    margin: o;
    padding: o;
    box-sizing: border-box;
}
body{
    font-family:'segoe ui', tahoma, ganeva, verdana, sans-serif ;
    background: linear-gradient(135deg, #9cdd9f, #66bb62);
    color: #333;
    line-height: 1,6;
    padding: 20px;
    max-width: 800px;
    margin: auto;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px gray;
}
h1{
    color: darkgreen;
    margin-bottom: 10px;
}
h2{
    color: forestgreen;
    margin-top: 20px;
    margin-bottom: 10px;
    border-left: 5px solid lightgreen;
    padding-left: 10px;
}
p{
    margin-bottom: 15px;
}
hr{
    border: none;
    height: 2px;
    background: lightgreen;
}
ul {
margin-bottom: 20px;
margin-left: 0.3s;
}
ul li {
margin-bottom: 8px;
transform: 0.3s;
}
ul li {
    color: darkgreen;
    transform: translateX(5px);
}
blockquote{
    background-color: honeydew;
    border-left: 5px solid green;
    padding: 15px;
    font-style: italic;
    margin-bottom: 20px;
    border-radius: 8px;
}
img {
    border-radius: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px gray;
}
a {
    color: green;
    text-decoration: none;
    font-weight: bold;
}
a :hover {
    text-decoration: underline;
    color: darkgreen;
}
@media (max-width: 600px){
    body{
        padding: 15px;
    }
}
