* {
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    color: #333333;
}

a {
    color: #222222;
    text-decoration: none;
}
a:visited {
    color: #333333;
}
a:hover {
    color: orangered;
}

header {
    font-family: Poppins, sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 2.5rem;
    margin: 32px;
    text-align: center;
}

/* Mobile styles */
main {
    margin: 32px;
    font-family: Montserrat, sans-serif;
}

main > .spotlight {
    margin: 32px 0 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
main > .spotlight > .image img {
    display: block;
    width: 100vw;
}
main > .spotlight > .text {
    text-align: center;
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 2.5rem;
}

main > .apps {
    margin: 32px;
}
main > .apps > .app {
    margin: 32px 0 32px 0;
    display: flex;
    flex-direction: column;
    text-align: center;
}
main > .apps > .app > .app-icon {
    padding: 32px;
    display: flex;
    justify-content: center;
}
main > .apps > .app > .app-icon > img {
    display: block;
}
main > .apps > .app > .app-text > .app-name {
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 1.5rem;
}
main > .apps > .app > .app-text > .app-description {
    margin-top: 16px;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5rem;
}

footer {
    margin: 32px;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 0.8rem;
    line-height: 2rem;
}

/* Desktop styles */
@media screen and (min-width: 768px) {
    body {
        width: 768px;
    }

    header {
        text-align: left;
    }

    main > .spotlight {
        flex-direction: row-reverse;
    }
    main > .spotlight > .image img {
        width: 400px;
    }

    main > .apps > .app {
        flex-direction: row;
        align-items: center;
    }
    main > .apps > .reverse {
        flex-direction: row-reverse;
    }
    main > .apps > .app > .app-icon {
        width: 184px;
    }
    main > .apps > .app > .app-text {
        width: 456px;
        padding: 32px;
        text-align: left;
    }
}