.landing-logo {
    background: url(gray-splash.png);
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
    position: absolute;
    width: 132.8%;
    right: 0;
}

.wrapper {
    min-width: 350px;
    min-height: 500px;
    width: 100%;
    height: 100%;
    background: black;
    overflow: hidden;
    position: relative;
}

h1 {
    font-size: 1.5em;
    text-shadow: 0 0 10px black;
    color: white;
}

html,
body {
    width: 100%;
    height: 100%;
}

.landing-logo>img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(1) translate(-50%, -50%);
    transform-origin: top left;
    height: 61.8%;
    transition: transform linear 0.5s;
}

.landing-logo.animated>img {
    transform: scale(0) translate(-50%, -50%);
}

.landing-btns {
    position: absolute;
    top: 50%;
    right: 0;
    width: 38.2%;
    transform: translateY(-50%);
}

.download-btn {
    padding: 5px 0;
}

.download-btn img {
    width: 61.8%;
}

.delete-btn {
    opacity: 0;
    transition: opacity linear 0.8s;
}

.disclaimer span {
    color: #007bff;
    font-weight: bold;
}

.disclaimer:hover {
    color: white;
    text-decoration: none;
}

.disclaimer {
    background: black;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    max-width: 300px;
    margin: 10px 0;
    text-align: center;
    display: none;
    text-decoration: none;
}

.delete-success {
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    color: white;
    font-size: 32px;
    display: none;
    justify-content: center;
    align-items: center;
}

.delete-success>div {}

@media (orientation:portrait) {
    .landing-logo {
        width: 100%;
    }

    .landing-logo>img {
        width: 61.8%;
        height: auto;
    }

    .landing-btns {
        top: auto;
        bottom: 10%;
        width: 100%;
        transform: none;
        text-align: center;
    }

    .download-btn {
        display: inline-block;
        width: 32.5%;
    }


    .download-btn img {
        width: 100%;
    }

    .delete-btn iframe {
        margin: auto !important;
    }

    .disclaimer {
        margin: 10px auto;
    }
}