body{
background: radial-gradient(circle, rgb(170, 168, 169) 0%, rgba(148,187,233,1) 100%);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.container{
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border:1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    height: 80%;
    width: 80%;
    padding: 20px;
    margin: 0 auto;
}
.search-container{
    text-align: center;
    margin-top: 50px;
}
input[type="text"]{
    padding: 10px;
    width: 300px;
    border: 0.5px solid #ffffff;
    border-radius: 5px;
    font-size: 15px;
    outline: none;
    color: black;
}
.result-container{
    margin-top: 20px;
}
.result{
    padding: 10px;
    margin-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px;
    border: 1px solid #ffffff;
    text-decoration: none;
    color: rgb(255, 255, 255);
    border-radius: 5px;
    display: none;
    cursor: pointer;
    transition: .5s all ease-in-out;
}
.result:hover{
    background: #000;
    color: white;
}
.result.show{
    display: block;
}
h1 a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
p{
    margin-left: 120px;
    margin-top: -55px;
}
a img{
    border-radius: 5px;
    width: 100px;
}