* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  display: flex;
  padding: 0 10px;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

header a {
  text-decoration: none;
  padding: 20px;
  color: #000;
}

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

header .left {
  display: flex;
  flex: 1;
}

header .right {
  display: flex;
}

main {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  color: #f72585;
  text-shadow: 0 0 5px #000;
  font-family: "Concert One", Arial, Helvetica, sans-serif;
  font-size: 120px;
  text-shadow: #000 0 0 1px, #000 0 0 1px, #000 0 0 1px;
}

.blue {
  color: rgb(0, 110, 255);
}

.red {
  color: rgb(253, 85, 85);
}

.yellow {
  color: rgb(255, 253, 116);
}

.green {
  color: rgb(67, 168, 67);
}

.search {
  display: flex;
  padding: 0 6px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.search:hover {
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.search input[type="text"] {
  border-radius: 30px;
  border: none;
  width: 500px;
  padding: 12px;
}

.search input[type="text"]:focus {
  outline: none;
}

.button-section {
  margin-top: 25px;
}

.search-button {
  background-color: rgba(0, 0, 0, 0.03);
  padding: 10px 18px;
  border: 1px solid rgba(0, 0, 0, 0);
  margin: 8px;
  border-radius: 5px;
  color: rgba(0, 0, 0, 0.8);
}

.search-button:hover {
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.9);
}

.search-button:active {
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.9);
  background-color: rgba(0, 0, 0, 0.06);
}

footer {
  display: flex;
  padding: 25px;
  background-color: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.65);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  justify-content: center;
}

.content {
  display: flex;
  flex: 1;
}

@media (max-width: 599px) {
  body {
    min-height: 91vh;
  }

  main {
    justify-content: normal;
  }

  .logo {
    font-size: 60px;
    margin-top: 10px;
  }

  .search {
    width: 90%;
  }

  .search input[type="text"] {
    width: unset;
  }

  header .right {
    display: none;
  }
}
