﻿* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  color: #2d2d2d;
  display: flex;
  flex-direction: column;
}

.search-stats {
  font-family: "Open Sans", sans-serif;
  margin: 10px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bar-left {
  display: flex;
  align-items: center;
}

.bar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
}

.menu a {
  color: #2d2d2d;
  text-decoration: none;
  margin-right: 15px;
}

.menu a:hover {
  text-decoration: underline;
}

.search-wrapper {
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.search-logo {
  background-image: url(../images/logo.png);
  height: 100px;
  width: 300px;
}

.search-bar {
  display: flex;
  width: 100%;
  margin: 20px 0;
}

.search-bar input {
  height: 50px;
  width: 500px;
  padding: 0 15px;
  border: 1px solid #d0d0d0;
  outline: 0;
  box-shadow: 0 0 0 0 rgba(136, 136, 136, 0);
  font-size: 18px;
  transition: box-shadow 0.3s;
  margin: 0 10px;
}

.search-bar input:focus {
  box-shadow: 0 0 10px -4px #888888;
}

.search-buttons {
  display: flex;
}

.search-buttons button {
  text-decoration: none;
  background-color: #ececec;
  color: black;
  padding: 10px 15px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0);
}

.search-buttons button:hover {
  border: 1px solid #2d2d2d;
}

.search-result {
  margin: 20px 10px;
}

.search-result a {
  text-decoration: none;
}

.search-result a > div {
  color: #2d2d2d;
}

.search-result a > h3 {
  color: #5073d4;
  font-weight: normal;
  font-size: 20px;
}

.search-result a > h3:hover {
  text-decoration: underline;
}

.bottom-bar {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  background-color: #ececec;
  border-top: 1px solid #d4d4d4;
}
