body {
    background: #030303;
    font-family: Arial;
    color: white;
    font-size: 13px;
    margin: 0;
    padding: 0;
    overflow:hidden;
}

.content {
    width: 100vw;
    height: 100vh;
}

.content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tickets {
    position: absolute;
    transform: translate(-70%, -70%);
    background: black;
    padding: 20px;
    font-weight: bold;
}

a {
    color: yellow;
    text-decoration: none;
}

a:hover {
    color: yellow;
}

/* MOBILE */
@media only screen and (max-width: 375px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
}