@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

body {
    font-family: "Manrope", sans-serif;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: seashell;
    height: 100vh;
    background-image: url("./image/shit.jpg");
    background-size: cover;
    background-position: center;
}

.container {
    position: relative;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 400px;
    height: 60px;
    padding: 20px;
    border: 2px solid rgba(133, 133, 133, 0.6);
    border-radius: 16px;
}

.search-box {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.search-box.expanded {
    width: 500px;
}

.search-box input {
    position: absolute;
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    border: 2px solid rgba(133, 133, 133, 0.6);
    border-radius: 12px;
    font-size: 22px;
    font-weight: 500px;
    background: transparent;
    padding: 0 48px;
    color: rgb(210, 210, 210);
}

.search-box input::placeholder {
    color: rgb(228, 228, 228, 0.5);
    margin-left: 40px;
}

.search-box input:focus {
    color: rgb(210, 210, 210);
}

.search-box button {
    position: absolute;
    right: 0;
    width: 40px;
    height: 100%;
    background: transparent;
    font-size: 28px;
    border: none;
    outline: none;
    cursor: pointer;
    color: antiquewhite;
}

.search-box i {
    position: absolute;
    left: 10px;
    font-size: 20px;
    color: antiquewhite;
}

#display {
    padding: 30px;
    color: rgb(222, 218, 218);
    font-size: medium;
    text-align: center;
}
