body{
    padding: 0px;
    margin: 0px;
}


.complete-body{
    background-color:darkslategrey;
    font-size: larger;
    color: mediumblue;
    width: 100%;
    padding: 0px;
    border-spacing: 0px;
}

.main-body{
    background-color:darkslategrey;
    font-size: larger;
    color:mediumblue;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    flex-basis: 1fr;
    flex-flow: nowrap;
    margin: 0px;
    padding:0px;
    background-color:whitesmoke;
    border:cornflowerblue  solid;
    border-width: 2px;
}
.nav-menu-container{
    width: 100%;
}

.nav-menu-item:hover {
    border-bottom: black 2px solid;
    background-color: lightpink;
    text-decoration-color: #000000;
}

.nav-menu-item {
    padding: 10px;
    font-size:xx-large;
    text-transform: uppercase;
    border-bottom: black 2px transparent;
    background-color: whitesmoke;
    text-decoration-color: #808080;
}

.nav-menu-item a{
    text-decoration: none;
    text-decoration-color: #808080;
}

.header-container {
    padding-left: 10px;
    font-size: xx-large;
    text-transform: capitalize;
    height: 100;
    background-color:cornsilk;
    color:black;
    display: flex;
    justify-content: space-between;
    font-style: italic;
    text-decoration: underline;
}

.header-leftside{
    margin:10px;
    text-align: center;
    align-items: center;
    font-weight: 600;
    font-size: xx-large;
}
.header-rightside{
    margin: 10px;
    text-align: center;
    align-items: center;
    border: 2px black solid;
    
}

.canvas-items-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-size: contain;
    padding: 0px;
    border-spacing: 0px;
}

.canvas-item-wrapper{
    background-size: contain;
    padding: 0px;
    border-spacing: 0px;
    background-color: whitesmoke;
}

.image-definition img{
    background-size: contain;
    height: 100%;
    width: 100%;
    transform:scale(1)
    padding: 0px;
    border-spacing: 0px;    
}

.footer-container{
    width: 100%;
    border: 4px black solid;
    padding: 10px;
    background-color:lightslategray;
    justify-content:space-between;
    display: flex;
}

.footer-container > div
{
    font-size: xx-large;
    height: 100px;
    font-weight: 600;
    display: flex;
    margin: 20px;
    display: flex;
    text-align: right;
    justify-content: right;
}


.image-definition{
    background-position: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size:contain;
    width: 100%;
    height: 100%;
}