* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9em;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Header Navigation */

nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  color: #5f6368;
}

nav a:hover {
  text-decoration: underline;
}

.appicon:hover {
  opacity: 0.5;
}

.nav-left li,
.nav-right li {
  list-style-type: none;
  display: inline;
  margin: auto 5px;
}

.nav-right {
  display: flex;
  align-items: center;
}

.signin {
  color: white;
  background-color: #4285f4;
  font-weight: bolder;
  height: 30px;
  width: 70px;
  border-radius: 3px;
  border: none;
}

.signin:hover {
  cursor: pointer;
}

/* Search */

main {
  text-align: center;
  margin-top: 10%;
}

.logo img {
  width: 300px;
  height: 100px;
}

form img {
  cursor: pointer;
  margin: 10px;
}

.search {
  width: 583px;
  margin: 10px;
  border: 1px solid lightgray;
  border-radius: 25px;
  height: 48px;
  margin: 28px auto;
  display: flex;
  align-items: center;
}

input {
  flex: 1;
  border: none;
  outline: none;
  padding: 5px;
}

.search:hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.buttons {
  height: 36px;
  width: 120px;
  background-color: #f2f2f2;
  border: 1px solid #f2f2f2;
  border-radius: 4px;
  color: #5f6368;
}

.buttons:hover {
  color: #222222;
  background-color: #f8f8f8;
  border: 1px solid #c6c6c6;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.region {
  margin-top: 50px;
  /* min-height: 200px; */
}

/* Footer Content */

footer {
  display: flex;
  flex-direction: column;
  background-color: #f2f2f2;
  margin: auto;
  width: 100%;
  position: absolute;
  bottom: 0;
}

footer ul {
  padding: 10px;
}

.fnav-left li,
.fnav-right li {
  list-style-type: none;
  display: inline;
  margin: auto 5px;
}

.country {
  border-bottom: 1px solid #e4e4e4;
  color: #5f6368;
  padding: 10px;
}
