@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* you can add you css here */
img {
    width: 100%;
}

body {
    overflow: hidden;
    margin: 0;
}

.wrapper {
    background: url("https://cdnb.artstation.com/p/assets/images/images/028/021/589/original/oliver-milizia-highresscreenshot00012.gif?1593259482");
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    margin: 0;
    flex-direction: column;
    justify-content: center;
}

.logo {
    margin: 0 auto;
    width: 30%;
}

#searchip {
    padding: 10px;
    width: 100%;
    border: 5px solid #ffc500;
    background: #000000b3;
    padding: 12px 10px;
    color: #ffc500;
    outline: none;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    font-size: 17px;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

#searchip::placeholder {
    font-size: 20px;
    color: #ffc500;
}

#container {
    position: relative;
    width: 30%;
    margin: 0 auto;
    margin-top: 20px;
}

#midcontainer {
    position: absolute;
    width: 107%;
    color: #ffc500;
    height: 100px;
    overflow-y: scroll;
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
    background: #000000b3;
    display: none;
}

#midcontainer::-webkit-scrollbar {
    border-radius: 11px;
    border: 2px solid #ffc500;
    background-color: rgba(0, 0, 0, 0);
}

#midcontainer::-webkit-scrollbar-thumb {
    border-radius: 12px;
    background-color: #ffc500;
}

.suggestion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2d2f30;
    padding: 0px 21px;
    margin: 10px;
    border-radius: 6px;
}

.suggestion p {
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    font-weight: bold;
    margin: 10px 0;
}

.nav i {
    color: #ffc500;
    font-size: 4rem;
}

.nav {
    position: fixed;
    right: 0;
    padding: 10px;
}