* {
    overflow-x: hidden;
}

body {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #545454;
}

img {
    height: 30%;
}

h1 {
    color: white;
}

p {
    color: white;
}

.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

form {
    width: 40%;
}

#search-input {
    padding: 10px;
    font-size: 16px;
    display: block;
    margin: 0 auto 20px;
    width: 80%;
}

button {
    padding: 15px 30px;
    font-size: 18px;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    border: 2px solid white;
    border-radius: 5px;
    color: white;
    background-color: #c26304;
}

button:hover {
    color: #000000;
}

#search-input::-webkit-inner-spin-button,
#search-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
