

* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}



body {
    background-color:darkcyan;
    color:lightsalmon ;
    font-family: 'Times New Roman', Times, serif;

}
header {
    background-color: aliceblue;
    color: dimgray;
    text-align: center;
    padding: 10px;
    font-size: large;
}
header h1 span{
    font-size: 70px;
    color: tomato;
    text-shadow: 5px 5px 10px #000, 15px 15px 0px limegreen;
    letter-spacing: 15px;
}
main{
    font-size: large;
    border: 13px dashed red;
    height: auto; width: 210px;
    margin: 50px auto;
}
ul{
    list-style: armenian;
    border: 5px dotted black;
    margin: 15px;
}
ul li{
    margin-top: 10px;
    margin-bottom: 16px;
    color: blue;
}ul li:first-child{
    font-weight: bold;
    color: hsla(234, 50% , 25%, .45)
}

footer{
    text-align: end;
    border: 40px ridge blueviolet;
    width: 50%;
    position: fixed;
    bottom:0px; left: 0px; 
    width: 100%; min-height: 100px;
}
