@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300&display=swap');
html, body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    background-color: #fcfcfc;
    color: #000;
    font-weight: 300;
}
a{ color: #ef5d04;}
h1{
    font-size: 4em;
    line-height: 1em;
    font-weight: 300;
    color: #000;
    text-align: center;
    margin-top: 10vh;
}
h2{
    line-height: 1em;
    font-weight: 100;
    color: #000;
    text-align: center;
        font-size: 2rem;
}
h3{
    font-size: 4em;
    font-weight: 100;
    color: #000;
    text-align: center;
    line-height: 1em;
    margin-bottom: 0.75em;
}
.top{padding-bottom:40px;}
.characters{ text-align: center;}
.btn{ 
    display: inline-block;
    position: relative;
    left: 0px;
    text-decoration: none;
    font-weight: 300;
    font-size: 3rem;
    line-height: 2.8rem;
    border: 0;
    background-color: #f58c31;
    color: white;
    padding: 0.3em 0.8em;
    box-shadow: 2px 2px 6px rgba(90, 90, 90, 0.6);
    background: linear-gradient(#f9d423 0%, #ff4e50 100%);
    border-radius: 20px;
}
.btn:hover{
    background: linear-gradient(#ff4e50 0%, #f9d423 100%);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.45);
    transform: scale(1.1);
}

section.sec{
    border-top:20px solid #f58c31;
    min-height: 80vh;
    overflow: hidden;
}
.install{
    width: auto;
    max-width: 600px;
    margin: 5vh auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.install img{ margin-bottom:30px;}

.ldata{
    display: flex;
    flex-direction: column;
}
.ldata img.webstore{ margin-bottom: 20px;}
.faq{
    text-align: left;
    margin: 0 auto;
    max-width: 600px;
    padding-left: 40px;
    margin-top: 45px;
}




.desc p {
    margin: 1em auto;
    padding: 0 3em;
    max-width: 790px;
    line-height: 1.6em;
    font-size: 1.2em;
    font-weight: 300;
}
.desc img{
    width: 100%;
}

.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.content p{
    font-size: 2em;
    font-weight: 100;
    text-align: center;
}
    

.news .feed{
    max-width: 750px;
    text-align: justify;
    margin: 20px auto;
    padding: 0 3em;
    
    line-height: 1.6em;
    font-size: 1.2em;
    font-weight: 300;
}

.news .feed li{ list-style-type: none; margin-bottom: 30px; }
.news .feed li sub { font-style: italic; }
.news .feed .title{ 
    margin-right: 20px;
}


ul.menu-top, ul.footer {
    margin: 0px;
    padding: 0px;
    padding: 0px 20px;
    background-color: #000;
    text-align: center;
}

ul.menu-top li, ul.footer li {
    display: inline-block;
    padding: 15px 0px;
    margin: 0;
    color: #bbb;
    font-size: 0.8em;
}

ul.menu-top li a, ul.footer li a {
    font-weight: normal;
    color: inherit;
    font-size: 1.2em;
    text-decoration: none;
    color: #eee;
}

.footer a:hover{
    text-decoration: underline;
}


ul.menu-top li:not(:last-child)::after, ul.footer li:not(:last-child)::after {
    display: inline-block;
    content: "|";
    color: #bbb;
    padding: 0px 20px;
}



@media (max-width: 500px) {
    .install{
        flex-direction: column;
    display: flex;
    }
    section.sec{ height: auto; min-height: none; padding-bottom: 50px;}
    .faq{ padding: 20px;}
    h1{ font-size: 3em; margin-top: 5vh;}
    h3{ padding:0 20px;}
    .content p{ padding:0 20px;}
}