*{
 margin: 0;
 padding: 0;
 box-sizing:border-box;
}
body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #fffefe,  #1549f5);
    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: black;
    margin-bottom: 10px;
}
h2{
    color: blue;
    margin-top: 20px;
    margin-bottom: 10px;
    border-left: 5px solid rgb(0, 0, 0);
}
p{
    margin-bottom: 15px;
}
hr{
    border: none;
    height: 2px;
    background: black;
}
ul{
    margin-bottom: 20px;
    margin-left: 20px;
}
ul li{
    margin-bottom: 8px;
    transition: 0.2s;
}
ul li{
    color: black;
    transform: translateX(5px);
}
blockquote{
    background-color: honeydew;
    border-left: 5px solid rgb(231, 227, 218);
    padding: 15px;
    font-style: italic;
    margin-bottom: 20px;
    border-radius: 8px;
}
img{
    border-radius: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow:0 2px white
}
a{
    color:rgb(248, 182, 15);
    text-decoration: none;
    font-weight: bold;
}
a :hover{
    text-decoration: underline;
    color: gold;
}
@media (max-width:600px){
    body{
        padding: 15px;
    }
}