* {
    box-sizing: border-box;
    padding:0px;
    margin: 0px;
}

.container {
    margin: 10px auto;
    width: 1300px;
    height: 900px;
    background-color: black;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.canvasBox {
    width:100%;
    height: 100%; 
    background-image: url('Assets/Background/background01.webp');
    background-repeat: no-repeat;
    background-size: 1300px 900px;
    position: relative;
    border: 5px solid red;
}

.hero {
    /* border:3px solid red; */
    width: 300px;
    height: 300px;
    position:absolute;
    bottom: 0px;
    left: 10px;
}

.hero img 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}