* {
	margin: 0;
}


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap'); 

body {
	display: flex;
	flex-direction: column;
	height: 100vh;
	font-family: 'Roboto', sans-serif;
}

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

/* Header */
.header {
	display: flex;
	justify-content: space-between;
	padding: 10px 15px;
	align-items: center;
}

.header a {
	color: #616161;
}
.header__left a {
	text-decoration: none !important;
	color: #616161;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: normal;
	font-weight: 600;
	margin-right: 13px;
}
.header__left .link {
	padding: 0 5px;
	border-bottom:2px solid transparent;
	position: relative;
}
.header__left .link:after {
	position: absolute;
	bottom: -10px;
	left: 0;
	right: 0;
	content: "";
	height: 2px;
	background: #1a73e8;
	opacity: 0;
}

.header__left .link.active,
.header__left .link:hover {
	color:#1a73e8;
}
.header__left .link.active:after ,
.header__left .link:hover:after {
	opacity: 1;
}

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

.header a:hover {
	text-decoration: underline;
}

.header__right {
	display: flex;
	align-items: center;
	justify-content: end;
}

.header__right .header__apps {
	margin-right: 10px;
}

/* Main Body */

.mainBody {
	flex: 1;
	display: flex;
    margin-top: 80px;
	flex-direction: column;
}

.mainBody img {
	object-fit: contain;
	height: 100px;
	height: 60px;
}

/* search */
.search__input {
	display: flex;
    align-items: center;
    border: 1px solid #c7c7c7;
    height: 44px;
    padding: 10px;
    border-radius: 999px;
    width: 95vw;
    margin: 0 auto;
    margin-top: 20px;
    max-width: 560px;
}

.search__input input {
	flex: 1;
	padding: 10px;
	border: none;
	outline: none;
}

.search__input span {
	color: #a7a7a7;
}

.search__buttons {
	margin-top: 30px;
	display: flex;
	justify-content: center;
}

.search__buttons button {
	margin: 5px;
	padding: 10px 15px;
	background-color: #f8f8f8;
	outline: none;
	border: none;
	cursor: pointer;
}

.header .btn {
	font-weight: 500;
    font-size: 14px;
    letter-spacing: .25px;
    line-height: 16px;
    min-width: 85px;
    padding: 9px 18px;
    text-align: center;
    vertical-align: middle;
    border-radius: 4px;
    box-sizing: border-box;
    background: #1a73e8;
    border: 1px solid transparent;
    color: #fff ;

	text-decoration: none;
}

.header .btn:hover {
	background: #1b66c9;
    -webkit-box-shadow: 0 1px 3px 1px rgba(66,64,67,.15), 0 1px 2px 0 rgba(60,64,67,.3);
    box-shadow: 0 1px 3px 1px rgba(66,64,67,.15), 0 1px 2px 0 rgba(60,64,67,.3);
}