:root {
    --backroung-color: #fff;
    --font-size: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, Arial, sans-serif;
}

.containner {
    display: flex;
    flex-direction: column;

}

/* ///////// Header //////// */
.headerr {
    width: 100%;
}

.navbarr ul {
    display: flex;
    padding: 24px 32px;
    gap: 32px;
    justify-content: flex-end;
}

.navbarr ul li {
    list-style: none;
}

.navbarr ul li a {
    text-decoration: none;
    color: #000;
    font-size: var(--font-size);
}

.navbarr ul li a:hover {
    text-decoration: underline;
}



/* /////// Body //////////// */
.body {
    height: 350px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 35px;

}

.body form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.body .search-box {
    min-width: 380px;
    width: 90vw;
    max-width: 550px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px rgba(175, 175, 175, 0.5) solid;
    padding: 0 14px;
    border-radius: 50px;
    box-shadow: 1px 2px 5px 1px rgba(74, 74, 74, 0.29);
    -webkit-box-shadow: 1px 2px 5px 1px rgba(74, 74, 74, 0.29);
    -moz-box-shadow: 1px 2px 5px 1px rgba(74, 74, 74, 0.29);
}

.body .search-box .search-text-box {
    width: 80%;
    height: 48px;
    line-height: 48px;
    resize: none;
    background-color: transparent;
    border: none;
    word-wrap: break-word;
    outline: none;
}

span {
    cursor: pointer;
}

.body .search-box svg {
    color: #2b2b2b;
    margin: 1px;
}

#search-svg-color {
    color: #5d5d5d;
}

.body .search-box-button input {
    margin: 11px 4px;
    padding: 0 16px;
    height: 36px;
    cursor: pointer;
    text-align: center;
    font-size: var(--font-size);
    color: #3c4043;
    border: #fff 0.5px solid;
    border-radius: 4px;
}

.body .search-box-button input:hover {
    border: 1px solid #c4c5c7;

}
