
.homescreen {
    display: none;
    position: absolute;
    box-sizing: border-box;
}

.homescreen-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 0;
    pointer-events: none;
}

.homescreen.show {
    display: block;
	animation: fadeIn 600ms ease-out forwards;
}
