﻿html, body {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    background-color: #eeb717;
    overflow: hidden;
}

.image-wrapper{
    display: block;
    margin-inline: auto;
    position: relative;
    width: 100%;
    height: 100%;
}

img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.prelaunch-image.mobile{
    display: none;
}

@media (max-width: 768px) or (orientation: portrait){
    .prelaunch-image.desktop{
        display: none;
    }
    .prelaunch-image.mobile{
        display: block;
    }
}

@media (max-width: 1200px) or (max-aspect-ratio: 13/8) {
    .image-wrapper{
        width: 100%;
        height: auto;

        img{
            width: 100%;
            height: 100%;
        }
    }
}





