body {
    background: #000000;
}

main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

main .desktop {
    width: 70vh;
    height: 100%;
    position: relative;
    background: #000000;
    padding-bottom: 8vh;
}

main .desktop .image {
    width: 70vh;
}

main .desktop .image img {
    width: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

main .desktop .top-fixed {
    position: fixed;
    left: calc(50% - 35vh);
    top: 0;
}

main .desktop .bottom-fixed {
    position: fixed;
    left: calc(50% - 35vh);
    bottom: 0;
}