﻿


@font-face {
    font-family: 'JobClarendon';
    src: url('../fonts/clrndnbc.ttf') format('truetype');
}


html, body {
    touch-action: manipulation; /* Prevents double-tap zoom and delays */
    font-family: 'JobClarendon';
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: black;
    position: relative;
}

.IndexBackgroundImage {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    height: auto;
}


.IndexBackgroundImageMenu {
    position: absolute;
    z-index: 0;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    height: auto;
}
.AppMainContainer {
    position: absolute;
    z-index: 0;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 100dvh; /*Not this is to fix issues with iphone bottom nav bar*/
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
.startbutton {
    width: 80%;
    margin-bottom:0px
}

.Startpeakyblindersheadertext {
   
    margin-top: 87%;
}

.LandscapeWhite {
    display: flex;
    position: absolute;
    top: 0;
    color: white;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 30px;
    background-color: black;
    text-align: center;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

@media screen and ( orientation:landscape ) {
    .Landscape {
        display: none !important;
    }
}

@media screen and ( orientation:portrait ) {
    .Portrait {
        display: none !important;
    }
}