body {
    margin: 0;
    font-family: 'Segoe UI';
}

.getapp-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100% - 11.5rem);
    background-color: #607D8B;
}

.getapp-main-modal {
    background-color: #CFD8DC;
    padding: 1rem 3rem 1rem 3rem;
    border-radius: 10px;
    box-shadow: 1px 1px 5px #212121;
    margin: .5rem;
    
}

.getapp-main-modal p {
    margin: 0 0 1rem 0;
}

.getapp-main-modal h1 {
    font-weight: 500;
    border-bottom: 1px solid black;
    padding-bottom: 1rem;
    text-align: center;
}

.getapp-main-modal ul {
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.getapp-main-modal ul li {
    margin-bottom: 1rem;
}

.getapp-main-modal img {
    height: 5rem;
    width: auto;
    border-radius: 10px;
    margin: 0 0 1rem 0;
}

.center-list-item {
    display: flex;
    justify-content: center;
}

.center-list-item img {
    height: 8rem;
    width: auto;
}

/* responsive design */

@media only screen and (max-width: 571px) {
    .getapp-main-modal img {
        width: 100%;
        height: auto;
    }
}

@media only screen and (max-width: 376px) {
    .getapp-main-modal {
        padding: 1rem;
    }
}

@media only screen and (max-height: 705px) {
    .getapp-content-container {
        height: max-content;
    }
}

/* end of responsive design */