*{
    box-sizing: border-box;
}

.body{
    background-color: rgb(0, 0, 0);
    font-family: Arial, Helvetica, sans-serif;
    
}

table{
    margin: 0 auto;
}

.sticky{
    position: sticky;
    top: 0;
    background-color: lightblue;
}

header{
    background-color: lightyellow;
}

footer{
    position: fixed;
    bottom: 0;
    background-color: brown;
    width: 1920px;
    text-align: center;
}
h1{
    text-align: center;
}