body {
    margin: 0px;
    background-color: #ff0099;
    overflow: hidden;
}

.wrapper {
   
    display: flex;
    
    align-items: center;

    justify-content: space-between;
    cursor: url('cursor.png'), auto;
    flex-direction: column;
}

.wrapper:last-of-type {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    /* display: block; */
    font-size: 18px;
    font-style: bold;
    font-weight: bold;
    flex-direction: column;
    align-items: flex-start;
}

.text {
    padding-bottom: 0.05em;
}

img {
    
    height:100vh;
}

.desktop {
    display: none;
}

.mobile {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1000;
    font-weight: bold;
    font-size:30px;
    color: white;
    text-shadow: 2px 1px 10px black;
}

@media screen and (min-width: 600px) {

    .wrapper {
         width: calc(100vw - 2em);

    height: calc(100vh - 2em);
    margin: 1em;
        justify-content: flex-end;
        align-items: flex-start;
        flex-direction: row;
    }

    .mobile {
        display: none;
    }

    .desktop {
        display: block;
    }

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

@media screen and (min-width: 925px) {

    .wrapper {
        width: 100vw;
        justify-content: center;
        align-items: center;
    }
}