@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,400;1,300&family=Roboto:wght@400;500&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    background: #f0f0f0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: black;
}

.bold {
    font-weight: 500;
}

.app-container {
    display: flex;
    flex-wrap:wrap-reverse;
    overflow: hidden;
}

.preview {
    flex: 1;
    display: flex;
    justify-content: center;
    height: 600px;
    width: 100%;
}

.appicon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #bdbdbd;
}

.sidebar {
    flex: 1;
    padding: 20px;
}

.sidebar h1 {
    font-weight: 500;
    color: #363536;
}

.sidebar p {
    font-size: 14px;
    max-width: 350px;
}

.store {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.store a {
    max-width: 200px;
    width: 50%;
}

.store img {
    width: 100%;
    height: auto;
}

.footer {
    width: 100%;
    text-align: right;
    position: absolute;
    bottom: 0;
    font-weight: 400;
}

.footer li {
    display: inline-block
}

@media only screen and (max-width: 768px) {
    body {
        display: block;
    }

    .footer {
        position: relative;
    }
}