*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Sagoe UI', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #9cdd9c, #1adf1a);
    color: #333;
    line-height: 1.6;
    padding: 20px;
    max-width: 800px;
    margin: auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 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: black; 
}
ul {
    margin-bottom: 20px;
    margin-right: 20px;
}
ul li {
    margin-bottom: 8px;
    transition: 0.3s;
}
ul li {
    color: black;
    transform: translateX(5px);
}
blockquote{
    background-color: honeydew;
    border-left: 5px solid black;
    padding: 15px;
    font-style: italic;
    margin-bottom: 20px;
    border-radius: 8px;
}
img {
    border-radius: 1000px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px gray;
}
a {
    color: red;
    text-decoration: none;
    font-weight: bold;
}
a :hover {
    text-decoration: underline;
    color: red;
}
@media (max-width:600px){
    body{
        padding: 15px;
    }
}