* { 
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
@font-face {
    font-family: Montserrat;
    src: url(/media/font/Montserrat-Medium.ttf);
    font-display: swap;
    font-weight: 400;
}
body{
    font-family: Montserrat;
    background-color: #131416;
}

/* header */
.header {
    background-color: #242424;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 20px;
}
.logo img {
    width: 90px;
}
.search_box {
    border-radius: 10px;
    border: 1px solid #ffffff0b;
    display: flex;
}
.search_box button {
    padding: 5px 10px 5px 8px;
    background-color: #2f2c31 !important;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none!;
}
.search_box button svg {
    color: #fff;
}
.search_box input {
    width: 400px;
    padding: 0px 10px;
    background-color: #121212;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    font-family: Montserrat;
    font-size: 15px;
    color: #fff;
    border: none;
    outline: none;
}
.h_button {
    display: flex;
    gap: 8px;
}
.h_button button{
    padding: 8px 8px 3px 8px;
    background-color: #3c3c3cdc;
    text-decoration: none;
    cursor: pointer;
    border-radius: 8px;
    border: none;
    outline: none;
}
.h_button svg {
    color: #fff;
}

/* body */

/* footer */