﻿

html, body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden; /* Completely disables scrolling */
    position: relative;
}

@font-face {
    font-family: 'magic dreams';
    src: url('../fonts/magic dreams.ttf') format('truetype');
}

.MainBackgroundImage {
    position: absolute; /* Position the image absolutely */
    top: 0;
    left: 0;
    width: 100vw; /* Set width to 100% of the viewport width */
    height: 100vh; /* Set height to 100% of the viewport height */
    object-fit: cover; /* Maintain aspect ratio while covering the screen */
    z-index: -1; /* Ensure the image stays behind other content */
}


.LandscapeWhite {
    font-family: "magic dreams";
    position: absolute;
    top: 50%;
    color: white;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 30px;
}

@media screen and ( orientation:landscape ) {
    .Landscape {
        display: none !important;
    }
}

@media screen and ( orientation:portrait ) {
    .Portrait {
        display: none !important;
    }
}