* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #bfbfbf, #3d413d);
    color: #000000;
    line-height: 1.6;
    padding: 20px;
    max-width: 800px;
    margin: auto;
    background-color: aliceblue;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgb(254, 255, 253);    
}
h1{
    color: rgb(91, 92, 92);
    margin-bottom: 10px;
}
h2{
    color: rgb(253, 252, 255);
    margin-top: 20px;
    margin-bottom: 10px;
    border-left: 5px solid rgb(0, 0, 0);
    padding-left: 10px;
}
p{
    margin-bottom: 15px;
}
hr{
    border: none;
    height: 2px;
    background: lightsalmon;
}
ul{
    margin-bottom: 20px;
    margin-left: 20px;
}
ul li{
    margin-bottom: 8px;
    transition: 0.3s;
}
ul li{
    color: rgb(41, 40, 40);
    transform: translateX(5px);
}
blockquote{
    background-color: dimgrey;
    border-left: 5px solid rgb(91, 92, 92);
    padding: 15px;
    font-style: italic;
    margin-bottom: 20px;
    border-radius: 8px;

}
img{
    border-radius: 200px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px ghostwhite;

}
a{
    color: rgb(20, 20, 242);
    text-decoration: none;
    font-weight: bold;
}
a :hover{
    text-decoration: underline;
    color: rgb(248, 245, 245);
}
@media(max-width: 600px){
    body{
        padding: 15px;
    }
}
