body {
    background-image: url("/img/pixel.jpg");
    background-repeat: repeat-y;
    background-size: 100%;
}


.fitimg {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 16:9 Aspect Ratio (height divided by width) */
    overflow: hidden;
}

.fitimg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the container while maintaining aspect ratio */
}