body {
    overflow-y: auto;
    overflow-x: hidden;
}

.home-top {
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: fit-content;
    background-image: url('homebg.webp');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    color: #fff;
}

.home-content {
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #112970;
}

.app-info {
    display: block;
    width: 100vw;
}

.app-list {
    display: flex;
    justify-content: center;
    width: 100vw;
    height: fit-content;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 3em;
    padding-bottom: 3%;
}

@media only screen and (max-width: 750px) {
    .app-list {
        justify-content: initial;
    }
}