html {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}

body {
    position: relative;
    margin: 0;
    width: 100%;
    height: 100vh;
    background-image: url("public/platformsRedirect.png"), linear-gradient(95deg, #9dd8e2, #01b9c7);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

img {
    display: none;
}

a {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100vh;
}

@media (width <= 1250px) {
    body {
        margin: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: linear-gradient(95deg, #9dd8e2, #01b9c7);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    html {
        background-image: linear-gradient(95deg, #9dd8e2, #01b9c7);
    }

    img {
        display: flex;
        width: 100%;
    }
}