body {
    background-color: black;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

img {
    
}

.bg {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.main {
    width: auto;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    z-index: 2;
    box-shadow: 0px 0px 21px 5px #000000;
}

a {
    position: absolute;
    bottom: 0.6vw;
    right: 0.6vw;
    color: white;
    text-decoration: none;
    font-family: monospace;
    mix-blend-mode: difference;
}

a.insta {
    position: absolute;
    bottom: 0.6vw;
    left: 0.6vw;
    color: white;
    text-decoration: none;
    font-family: monospace;
    mix-blend-mode: difference;
    width: 6rem;
}

@media
    only screen and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: portrait),
    only screen and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait),
    only screen and (max-aspect-ratio: 4/5)
    {
        
        a {
            font-size: 1rem;
        }
    }