* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    background-color: #f2f2f2;
}

.container {
    text-align: center;
    margin-top: -100px;
}

.logo img {
    width: 272px;
    height: auto;
    margin-bottom: 40px;
}

.search-form {
    display: inline-block;
    width: 100%;
    max-width: 584px;
}

.search-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #d9d9d9;
    border-radius: 24px;
    font-size: 16px;
    outline: none;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
}

.search-btn {
    background-color: #f8f9fa;
    border: 1px solid #dfe1e5;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 14px;
    color: #5f6368;
    cursor: pointer;
    margin: 5px;
}

.search-btn:hover {
    background-color: #e8e8e8;
}

footer {
    margin-top: 40px;
    color: #70757a;
    font-size: 14px;
}
