@media screen and (orientation: portrait) {
    body {
        background: url("../img/background-9-16.svg") no-repeat center center;
        background-size: cover;
        height: 100vh; /* Ensure it covers the full viewport height */
        overflow: hidden; /* Prevent scrolling */
    }
}

@media screen and (orientation: landscape) {
    body {
        background: url("../img/background-16-9.svg") no-repeat center center;
        background-size: cover;
        height: 100vh; /* Ensure it covers the full viewport height */
        overflow: hidden; /* Prevent scrolling */
    }
}
