﻿/* Reset */
body, ul, li, a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    color: #202124;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Header */
header {
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-links a {
    font-size: 14px;
    color: #202124;
}

.header-links a:hover {
    text-decoration: underline;
}

.menu-icon svg {
    fill: #5f6368;
    width: 24px;
    height: 24px;
}

.profile-icon {
    background-color: #f8f9fa;
    border: 1px solid #dadce0;
    border-radius: 50%;
    padding: 8px;
    font-size: 14px;
}

/* Main Content */
.container {
    text-align: center;
    margin-top: 100px;
}

.logo {
    width: 272px;
    height: 92px;
    margin-bottom: 20px;
}

.search-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-box {
    width: 500px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    outline: none;
    margin-bottom: 20px;
}

.search-box:focus {
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
}

.buttons {
    display: flex;
    gap: 10px;
}

.search-button {
    padding: 10px 20px;
    font-size: 14px;
    color: #