.left {
    margin-left: 100px;
}

.left2 {
    margin-left: 200px;
}

.right {
    position: absolute;
    left: 75%;
}

.image {
    position: absolute;
    top: 45%;
    width: 250px;
    height: 295px;
    border-radius: 10px;
}

.image2 {
    position: absolute;
    top: 100%;
    width: 250px;
    height: 295px;
    border-radius: 10px;
}

.card {
    color: white;
    text-decoration: none;
    background-color: rgb(53, 53, 70);
    width: 225px;
    height: 270px;
    border-radius: 30px;
    border: white 2px solid;
    padding: 25px;
    display: block;
    margin-top: 50px;
}

.intro {
    margin-bottom: 70px;
}

.download-emoji {
    margin-top: 500px;
    font-size: 120px;
}

.download-title {
    font-size: 70px;
    margin: 30px auto 50px auto;
}

.download-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: grey;
    height: 100px;
    line-height: 100px;
    border-radius: 1000px;
    /*padding: 25px 50px 25px 50px;*/
    width: 350px;
    /*margin-bottom: 1000px;*/
}

.download-button {
    display: inline-block;
    background-color: #0d6efd;
    width: 100px;
    border-radius: 1000px;
    margin: 0 10px 10px 0;
    padding: 15px;
    text-decoration: none;
    color: white;
    vertical-align: middle;
    line-height: normal
}

#popupwrapper {
    position: absolute;
    background-color: rgba(0, 0, 0, 75%);
    width: 100vw;
    height: 3000px;
    overflow: hidden;
    top: 0%;
    left: 0%;
    display: none;
}
#popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#popup span {
    position: absolute;
    background-color: rgba(0, 0, 0, 50%);
    width: 35px;
    height: 35px;
    border-radius: 17.5px;
    line-height: 35px;
    font-size: 17.5px;
    right: -35px;
    top: -35px;
    cursor: pointer;
}

/* Rewrite for mobile */
@media screen and (max-width: 768px) {
    .left, .left2, .right {
        margin-left: 0 !important;
        position: static !important;
    }

    .card {
        margin: 30px auto;
    }

    .image, .image2 {
        position: static;
        display: block;
        margin: 30px auto;
        width: 90%;
        height: auto;
        max-width: 300px;
    }

    .download-emoji {
        margin-top: 100px;
        font-size: 80px;
    }

    .download-title {
        font-size: 40px;
        text-align: center;
    }

    .download-container {
        flex-direction: column;
        height: auto;
        line-height: normal;
        padding: 20px;
        width: 90%;
    }

    .download-button {
        width: 80%;
        margin: 10px auto;
        text-align: center;
    }
}