.app {
    width: 98vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: #000; */
    background-image: none;
}

.content {
    width: 70%;
    height: calc(100vh - 131px);
    flex: 1;
    display: flex;
    margin: auto;
    padding: 10px 0;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #000;
}

.ifam-box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 10px;
    left: 0px;
    right: 0px;
    margin: auto;
    z-index: 12;
}

.footer {
    margin-bottom: 5px;
}

@media (max-width:1000px) {
    .app{
        width: 100vw;
    }
    .content {
        width: 100%;
        height: calc(100vh - 131px);
        padding: 10px 0;
        margin: 10px 0;
        background-color: #000;
    }

    .ifam-box {
        width: 100%;
    }

    .footer {
        margin: 0px !important;
    }

}