body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #006600;
}

.seized {
	position: absolute;
	width: 80%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    background-color: #006600;
}

/* Container to hold the rotated background */
.rotated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Using a pseudo-element to apply the background image */
.rotated-bg::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background-image: url('repeat.png'); /* Replace with your image path */
    background-repeat: repeat;
    background-size: auto; /* Adjust the size of the background image */
    transform: rotate(45deg); /* Rotate the background image */
}
