.menu {
    background-color: black;
    padding: 30px;
}

.menu .sub-menu {
    float: right;
}

.menu .sub-menu a,
.logo a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 22px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    padding: 20px;
}

.menu .sub-menu a:hover,
.logo a:hover {
    background: white;
    color: black;
    border-radius: 5px;
}

.google-logo {
    text-align: center;
    margin-top: 85px;
}

.search-box {
    text-align: center;
    margin-top: 20px;
}

.search-box input {
    width: 600px;
    height: 50px;
    border-radius: 100px;
    border: 1px solid rgb(255, 255, 255);
    padding-left: 40px;
    font-size: 18px;
    outline: 1px solid grey;
}

.search-box input:focus {
    box-shadow: 0px 0px 3px 3px grey;
}

.buttons {
    text-align: center;
    margin-top: 40px;
}

.buttons button {
    width: 150px;
    height: 40px;
    margin-right: 30px;
    border-radius: 5px;
    border: 1px solid grey;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: white;
}

button:nth-child(1){
    background-color: red;
}

button:nth-child(1):hover{
    background-color: #ff3636;
}

button:nth-child(2){
    background-color: blue;
}

button:nth-child(2):hover{
    background-color: #0040ff;
}

.offer {
    text-align: center;
    margin-top: 25px;
}

.offer a {
    margin-right: 15px;
}