* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

.backgroud-section {
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    height: 100vh;
}
.backgroud-section-2 {
    background-size: cover; /* Ensures the image covers the section */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    overflow: hidden;
    height: 100vh;
}
.lord {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lord img:nth-child(1) {
    width: 650px;
    position: absolute;
    opacity: 0.3;
    /* animation: rotate linear infinite 10s; */
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.lord img:nth-child(2) {
    width: 350px;
    position: absolute;
    filter: drop-shadow(0px 0px 20px yellow);
}

@media (max-width: 992px) {
    .lord img:nth-child(1) {
        width: 600px;
    }
}
@media (max-width: 810px) {
    .lord img:nth-child(1) {
        width: 500px;
    }
}
@media (max-width: 700px) {
    .lord img:nth-child(1) {
        /* width: 650px; */
        animation: none;
    }
}
@media (max-width: 660px) {
    .lord img:nth-child(1) {
        width: 550px;
    }
}

@media (max-width: 576px) {
    .lord img:nth-child(1) {
        width: 500px;
    }
}
@media (max-width: 500px) {
    .lord img:nth-child(1) {
        width: 450px;
    }
    .lord img:nth-child(2) {
        width: 250px;
    }
}

@media (max-width: 450px) {
    .lord img:nth-child(1) {
        width: 400px;
    }
}
@media (max-width: 395px) {
    .lord img:nth-child(1) {
        width: 350px;
    }
    .lord img:nth-child(2) {
        width: 200px;
    }
}

.corner_design img {
    width: 200px;
}

.corner_design img:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0rem;
    transform: scaleY(-1);
}

.corner_design img:nth-child(2) {
    position: absolute;
    top: 0rem;
    right: 0rem;
    transform: scale(-1, -1);
}

.corner_design img:nth-child(3) {
    position: absolute;
    bottom: 0rem;
    left: 0rem;
}

.corner_design img:nth-child(4) {
    position: absolute;
    bottom: 0rem;
    right: 0rem;
    transform: scaleX(-1);
}

@media print {
    .container {
        page-break-inside: avoid; /* Avoid breaking content inside the container */
    }

    .breakhere {
        page-break-before: always; /* Forces a page break before this element */
    }
}
/* grid */

.grid {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 5px;
}

.cell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: white;
    border: 1px solid #ddd;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.cell:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.cell:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}

.cell:nth-child(3) {
    grid-area: 1 / 3 / 2 / 4;
}

.cell:nth-child(4) {
    grid-area: 2 / 1 / 3 / 2;
}

.cell:nth-child(5) {
    grid-area: 2 / 2 / 3 / 3;
}

.cell:nth-child(6) {
    grid-area: 2 / 3 / 3 / 4;
}

.cell:nth-child(7) {
    grid-area: 3 / 1 / 4 / 2;
}

.cell:nth-child(8) {
    grid-area: 3 / 2 / 4 / 3;
}

.cell:nth-child(9) {
    grid-area: 3 / 3 / 4 / 4;
}
.text,
li,
h3,
h4,
h2 {
    color: gold;
}

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

.cell {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cell:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn {
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}
