html, body {
    height: 100%;
    width: 100%;
	margin: 0px;
	padding: 0px;
    background-color: #000000;
    color: #ffffff;
    overflow: hidden;
}

#appHolder {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
}

#wrapper {
    background-position: center;
    background-size: cover;
    background-image: url("images/background.png");
    grid-row: 1;
    position: relative;
}

#gunHolder {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("images/gun.png");
}

#imFeature {
    cursor: pointer;
    position: absolute;
    bottom: 8px;
    left: 72px;
    left: calc(72px + env(safe-area-inset-left));
}

#imFeature img {
    height: 52px;
    width: 52px;
}

#imMenu {
    cursor: pointer;
    position: absolute;
    bottom: 12px;
    left: 8px;
    left: calc(8px + env(safe-area-inset-left));
    height: 48px;
    width: 48px;
}

#ammoHolder {
    position: absolute;
    bottom: 8px;
    right: 8px;
    right: calc(8px + env(safe-area-inset-right));
}

#ammoIndicator {
    height: 32px;
    width: 32px;
    cursor: pointer;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

#ammoCount {
    position: relative;
    top: -3px;
    font-size: 32px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    color: #ffffff;
    text-shadow:
   -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
     cursor: pointer;
     -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

#adUnit {
    grid-row: 2;
}