* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.search {
    position: absolute;
    width: 100%;
    height: 40px;
    top: 45px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

input[type=text] {
    width: 75%;
    padding: 12px 35px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 8px;
    position: relative;
}

input[type=text]:focus {
    outline: none;
}

a {
    width: 40px;
    height: 40px;
    background-color: rgb(255 255 255 / 61%);
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

a i {
    cursor: pointer;
}

iframe {
    width: 100%;
    height: 75vh;
}