*{
    box-sizing: border-box;
}

body{
    margin: 0;
    background-color: bisque;
}

h1 {
    text-align: left;
}
h2 {
    color: rgb(39, 136, 226);
}
h1, h2 {
    font-style: italic;
    text-transform: uppercase;
}

#body {
    
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: medium;
    word-spacing: 5px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

img {
    padding-left: 100px;
}
img:hover {
    transform: scale(1.5);
}

a:active {
    color: black;
}

p:nth-child(even) {
    color: rgb(253, 3, 3);
}
p {
    text-align: justify;
    text-indent: 15px;
}
.header{
    height: 120px;
    width: 2000px;
    background-color: rgb(0, 191, 255);
    top: 0;
    position: sticky;}

    .footer{
        height: 120px;
        width: 1000px;
        background-color: yellow;
        top: 0;
        position: sticky;
    }