/* FONTS  */


/* GLOBAL  */
html {
    height: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

*:focus {
    outline: 2px dotted #fff;
    outline-offset: 3px;
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #fff;
    color: #222;
}

img {
    max-width: 100%;
    height: auto;
}


/* AUTOFILL-STYLES  */
/* input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border-color: transparent;
    -webkit-text-fill-color: inherit;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
} */


/* PLACEHOLDER-STYLES  */
/* ::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
    color: rgba(52, 49, 61, 0.5);
    opacity: 1;
} */


/* VISUALLY-HIDDEN  */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
}


/* CONTAINER  */
.container {
    width: 100%;
    max-width: 1160px;
    padding-left: 30px;
    padding-right: 30px;
    margin-right: auto;
    margin-left: auto;
}


/* MAIN-CONTENT  */
.main-content {
    flex-grow: 1;
}


/* BUTTON  */
.wrap__btn {
    padding: 8px 15px;
    border-radius: 30px;
    background-color: #000;
    color: red;
    border: 2px solid red;
    transition: color 0.2s ease, border-color 0.2s ease;
}

#btn {
    border-radius: 20px;
    padding: 15px 20px;
    background-color: #000;
    color: green;
    border: 2px solid green;
    transition: color 0.2s ease, border-color 0.2s ease;
}

#Searchbtn {
    border-radius: 20px;
    padding: 15px 20px;
    background-color: #000;
    color: green;
    border: 2px solid green;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.wrap__btn:hover,
#btn:hover,
#Searchbtn:hover {
    color: #fff;
    border-color: #fff;
}


/* HEADER  */
.header {
    border: 4px solid green;
    padding: 40px;
    border-radius: 10px;
    margin-top: 10%;
    margin-left: 35%;
    color: green;
    background-color: #000;
    max-width: 400px;
}

.wrap {
    display: flex;
    align-items: center;
}

.wrap__num {
    margin-right: 20px;
    transition: color 0.2s ease;
}

.wrap__title {
    margin-right: auto;
    transition: color 0.2s ease;
}

.wrap__title:hover,
.wrap__num:hover {
    color: #fff;
}


/* INNER  */
.inner {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#serachInput {
    width: 100%;
    max-width: 250px;
    padding: 12px 10px;
    margin-right: 10px;
    border-radius: 20px;
    font-size: 18px;
    border: 2px solid transparent;
    background-color: #000;
    color: green;
    border-color: green;
    transition: border 0.4s ease, color 0.4s ease;
}

#input {
    width: 100%;
    max-width: 250px;
    padding: 12px 10px;
    margin-right: 20px;
    border-radius: 20px;
    font-size: 18px;
    border: 2px solid transparent;
    background-color: #000;
    color: green;
    border-color: green;
    transition: border 0.4s ease, color 0.4s ease;
}

#input:hover,
#serachInput:hover {
    border: 2px solid #fff;
}
#serachInput::placeholder,
#input::placeholder {
    color: green;
}

#serachInput:hover::placeholder,
#input:hover::placeholder {
    color: #fff;
}
















@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {}