*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}


body{

    min-height:100vh;

    background:#111;

    color:white;

    display:flex;

    justify-content:center;

    align-items:flex-start;

    padding-top:80px;

}



/* CONTAINER */

.container{

    width:90%;

    max-width:900px;

    text-align:center;

}



/* LOGO */

.logo{

    font-size:42px;

    font-weight:bold;

    color:#ffd400;

    margin-bottom:40px;

}



/* SEARCH */

.search-box{

    display:flex;

    background:#222;

    padding:10px;

    border-radius:50px;

    box-shadow:
    0 0 25px rgba(255,212,0,.25);

}



.search-box input{

    flex:1;

    border:none;

    outline:none;

    background:transparent;

    color:white;

    padding:15px 20px;

    font-size:16px;

}



.search-box button{

    border:none;

    background:#ffd400;

    color:#111;

    font-weight:bold;

    padding:0 30px;

    border-radius:40px;

    cursor:pointer;

}



/* QUICK BUTTON */

.quick{

    margin:25px 0;

    display:flex;

    justify-content:center;

    gap:10px;

    flex-wrap:wrap;

}



.quick button{

    background:#222;

    color:#ffd400;

    border:1px solid #ffd400;

    padding:10px 20px;

    border-radius:30px;

    cursor:pointer;

}



.quick button:hover{

    background:#ffd400;

    color:#111;

}



/* RESULT */

#result{

    margin-top:30px;

    text-align:left;

}



.card{

    background:#1d1d1d;

    padding:20px;

    border-radius:15px;

    margin-bottom:15px;

    border-left:5px solid #ffd400;

    animation:show .3s;

}



.card h3{

    color:#ffd400;

    margin-bottom:8px;

}



.card p{

    color:#ddd;

    margin-bottom:12px;

}



.card a{

    display:inline-block;

    background:#ffd400;

    color:#111;

    padding:8px 18px;

    border-radius:20px;

    text-decoration:none;

    font-weight:bold;

}



/* WELCOME */

.welcome{

    text-align:center;

    color:#aaa;

}



.welcome h2{

    color:white;

    margin-bottom:10px;

}



/* ANIMATION */

@keyframes show{

    from{

        opacity:0;

        transform:translateY(10px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}



/* MOBILE */

@media(max-width:600px){

    .logo{

        font-size:30px;

    }


    .search-box{

        flex-direction:column;

        gap:10px;

    }


    .search-box button{

        height:45px;

    }

}