body {
    background: url(./../images/install_bg.png);
    background-attachment: fixed;
    background-size: 100vw 100vh;
    background-repeat: no-repeat;
    opacity: 1;
    margin: 0;
    box-sizing: border-box;
}

.app-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    transition: all 0.75s ease-in-out;
}

@font-face {
    font-family: oxanium;
    src: url(../fonts/Oxanium-Bold.ttf);
}

.app {
    margin: 0 20%;
    display: flex;
    flex-direction: column;
    align-content: space-around;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.582);
    backdrop-filter: blur(1px);
    padding: 1% 3%;
    height: fit-content;
    border-radius: 50px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    font-family: oxanium;
}

.udgamLogo {
    position: fixed;
    top: 0;
    left: 0;
  height: 120px;
}

.downloadbtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.screenshots {
    display: flex;
    justify-content: center;
}

.steps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 33%;
}

@media screen and (max-width:1000px) {
    .app-page {
        overflow-y: scroll;
        flex-direction: column;
        justify-content: start;
    }
    .udgamLogo {
        position: unset;
    }
    .app {
        margin:10%;
        gap: 10px;
        display: block;
        height: fit-content;
    }
    .app::-webkit-scrollbar {
        display: none;
    }
    .app {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .screenshots {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .steps {
        padding-top: 5%;
        width: 90%;
    }
}

.screenshot-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
    justify-content: center;
}

.screenshot-img img {
    height: 400px;
}

.screenshot-text {
    padding: 2% 0;
}