* {
    border: none;
    margin: 0;
    padding: 0;
}
.backgroundimg
{
   background-color:#080609;
   height: 100vh;
    
}


.background img {
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 900px;
    width: 900px;
    transition: opacity 0.5s ease; 
}
.background img:nth-of-type(2) 
{
    opacity: 0;
}
.background:hover img:nth-of-type(1) {
    opacity: 0;
}
.background:hover img:nth-of-type(2) {
    opacity: 1;
}


.backgroundimg
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    padding: 10px;
}

.travis
{
    grid-column: 5;
    width: 400px;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}
.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
img {
    width: 80%;
    max-width: 800px;
    height: auto;
    z-index: 1;
}
canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    display: none;
}