body{
    margin:0;
    padding:0;
    background:#202124;
    font-family:Arial, sans-serif;
    color:white;
}

.google-home{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.logo{
    font-size:72px;
    font-weight:bold;
    margin-bottom:30px;
    letter-spacing:-3px;
}

.search-box{
    width:600px;
    max-width:90%;
    position:relative;
}

.search-box input{
    width:100%;
    padding:16px 25px;
    border-radius:30px;
    border:none;
    outline:none;
    background:#303134;
    color:white;
    font-size:18px;
    box-sizing:border-box;
}

.search-box input:focus{
    background:#3c4043;
}

#suggestions{
    position:absolute;
    width:100%;
    top:60px;
    background:#303134;
    border-radius:20px;
    overflow:hidden;
    z-index:999;
}

.suggest-item{
    padding:12px 20px;
    cursor:pointer;
}

.suggest-item:hover{
    background:#3c4043;
}

/* SEARCH RESULT */

.results{
    width:700px;
    max-width:90%;
    margin:auto;
    padding-top:30px;
}

.result-item{
    margin-bottom:35px;
}

.result-header{
    display:flex;
    align-items:center;
    gap:10px;
}

.result-header img{
    width:18px;
    height:18px;
}

.result-url{
    color:#8ab4f8;
    font-size:14px;
}

.result-title{
    display:block;
    color:#8ab4f8;
    font-size:22px;
    text-decoration:none;
    margin-bottom:5px;
}

.result-title:hover{
    text-decoration:underline;
}

.result-desc{
    color:#bdc1c6;
    font-size:14px;
    line-height:1.5;
}