<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
header{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background: #000;
    padding:10px;
    display: flex;
    justify-content: center;
}
header a{
    color:#fff;
    text-align: center;
    font-family: Abril Fatface;
    font-size: 30px;
    text-decoration: none;
    transition: all .3s ease-out;
}
header a:hover{
    color:#ffb618;
    text-decoration: none;
    transition: all .3s ease-out;
}
main{
    display: grid;
    grid-gap: 3em;
    grid-template-columns: 1fr 1fr;
    width: 85%;
    margin: auto;
    padding: 8em 0em 5em 0em;
}
#about_app h1{
    font-family: Abril Fatface;
    color:#ffb618;
}
#about_app p,#main2{
    font-family: lato;
}
#app{
    background: #fff;
    border: 1px solid #000;
    padding: 1em;
    border-radius: 2em;
}
#app h1{
   font-family: Abril Fatface;
    color:#ffb618; 
    text-align: center;
    padding-bottom: 1em;
}
#app input{
    width: 32%;
    height: 30px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
#click{
    background: #000;
    color: #fff;
    font-family: lato;
    cursor: pointer;
}
footer p{
    color:#fff;
    text-align: center;
    font-family:lato;
    font-size: 12px;
    padding: inherit 3em;
}
footer p a{
    color:#ffb618;
    font-family: lato;
    text-decoration: none;
}
footer{
    width: 100%;
    position: fixed;
    right: 0px;
    bottom: 0px;
    background: #000;
    padding:10px;
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 768px){
    main{
    grid-template-columns:1fr;
    width: 85%;
    margin: auto;
    padding: 5em 0em;
}
}</pre></body></html>