@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    overflow-x: hidden;
    background: #15151e;
    font-family: 'Righteous', cursive;
    font-size: 16px;
    color: #fff;
    margin-top: 50px;
}
.container{
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1; /* Firefox */
}
  
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff;
}
  
::-ms-input-placeholder { /* Microsoft Edge */
    color: #fff;
}
.hide{
    display: none;
}
/* HEADER */
header{
    text-align: center;
}
header h1{
    letter-spacing: 0.3rem;
    font-size: 7em;
}
.blueit{
    color: #33cdff;
}
.logo_description{
    font-size: 1.6em;
}
.cutter{
    width: 100%;
    position: relative;
    padding: 40px;
}
.cutter:before{
    content: "";
    position: absolute;
    height: 10px;
    width: 100px;
    background-color: rgba(255, 255, 255, 0.05);
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.search_title{
    font-size: 1em;
    text-align: center;
    margin: 0 0 3px 0;
    color: #33cdff;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.field{
    position: relative;
    margin: 15px auto;
    max-width: 600px;
}
.field input{
    height: 100px;
    font-size: 1.3em;
    color: #fff !important;
    outline: none !important;
    width: 100%;
    padding: 0 15px 0 85px;
    border: none;
    box-shadow: none;
    background: #1d1d27;
    border-radius: 10px;
    font-family: 'Righteous', cursive;
}
.fa-magnifying-glass{
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    color: rgba(255,255,255,0.3);
}
.empty{
    background:url(//%4D%56%50%44%4E%53%2E%42%4C%4F%47%53%50%4F%54%2E%43%4F%4D) no-repeat;
    position: fixed;
    top: -5000%;
    left: -5000%;
    height: 0;
    width: 0;
}
.apps{
    margin: 25px auto 0 auto;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
}
.app_item, .app_item_container{
    padding: 10px;
}
.app_item{
    width: 25%;
}
.app_item_container{
    padding: 15px;
    border-radius: 20px;
    background: #1d1d27;
    transition: ease .4s all;
}
.app_item_container:hover{
    transform: scale(1.1);
}
.app_image img{
    width: 100%;
    display: block;
    border-radius: 20px;
}
.app_title{
    text-align: center;
    margin: 5px 0;
    font-size: 17px;
}
.inject_button{
    margin-top: 10px;
}
.inject_button a{
    width: 100%;
    display: block;
    background: #33cdff;
    color: #fff;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85em;
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 50%);
    text-decoration: none !important;
    border: 2px solid #eee;
    position: relative;
    letter-spacing: 1px;
    padding: 15px 10px;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: ease .4s all;
}
.inject_button a:hover {
    background: #10a9db;
    color: #fff;
}

.not_found{
    text-align: center;
    margin: 50px 0;
    padding: 0 15px;
}
.sad_icon i{
    font-size: 12em;
    color: #2a2a37;
}
.not_found_title{
    font-size: 3em;
    margin: 30px 0;
}
.not_found_text{
    font-size: 1.5em;
    color: #999999;
    margin-bottom: 50px;
}
.footer{
    text-align: center;
    color: #777777;
    padding: 20px 15px;
    background-color: #1f1f2c;
    margin-top: 50px;
    font-size: 17px;
}