/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* End of reset styling */
@font-face {
    font-family: 'Michroma';
    src: url('Michroma-Regular.ttf');
}

* {
    color: #F5F5F5;
    font-family: 'Michroma'
}
span, li {
    font-family: 'Michroma';
}
body {
    background-color: #121212;
}
header{
    width: '100%';
    text-align: 'center';
    flex-direction: 'row';
}
#logo{
    width: 300px;
}
a{
    text-decoration: none;
    color: lightgray;
    font-family: 'Michroma';
    font-size: 12px;
}
.app-card-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.app-card-icon{
    width: 100px;
    border-radius: 15px;
}
.app-card{
    display: flex; 
    flex-direction: row; 
    align-items: flex-start; 
    justify-content: center;
    padding: 10px;
    border-radius: 15px;
    max-width: 1000px;
}
.app-card-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10px;
}
.app-card-title{
    font-family: 'Michroma';
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}
.app-card-description{
    font-family: 'Michroma';
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #121212;
}

.wrapper{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    max-width: 1000px;
}
.app-card-title{
    font-family: 'Michroma';
    font-size: 30px;
    margin-bottom: 10px;
}
.app-description-text{
    font-family: 'Michroma';
    margin-top: 10px;
    line-height: 1.5;
}
.app-links{
    width: 500px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.app-links-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding-bottom: 40px;
}
.app-policy-text{
    font-family: 'Michroma';
    font-size: 15px;
    line-height: 1.5;
    margin-top: 10px;
}
.app-policy-title{
    font-family: 'Michroma';
    font-size: 18px;
    margin-top: 40px;
}

@media screen and (max-width: 1000px) {
    .wrapper {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .app-links{
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 300px) {
    #logo{
        width: 200px;
    }
}
