@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@1,300;1,400&display=swap");

:root {
  --main-bg-color: #2874f0;
}

* {
  margin: 0;
  padding: 0;
}

header {
  background-color: var(--main-bg-color);
  font-family: "Lato", sans-serif;
}

nav ul li {
  list-style: none;
  padding: 0px 23px;
}

nav {
  display: flex;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 88px;
  padding: 0px 25px;
}

nav ul {
  height: 58px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

nav ul li a:hover {
  color: rgb(24, 24, 112);
  font-weight: bold;
}

.search {
  display: flex;
  align-items: center;
}

.search input {
  width: 30vw;
  height: 27px;
  border-radius: 5px;
  margin: 0 16px 0 56px;
  padding: 0 12px;
}

.search button {
  font-family: "Lato", sans-serif;
  font-weight: 900;
}

.container {
  min-height: calc(100vh - 58px - 12vh);
}

.slider {
  margin: 12px auto;
  width: 90vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider img {
  width: 90vw;
  border-radius: 10px;
}

.card {
  max-width: 91vw;
  margin: 37px auto;
  font-family: "Lato", sans-serif;
}

.cards {
  display: flex;
  overflow: scroll;
}

.card-item {
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 15px;
}

.card h2 {
  font-family: "Lato", sans-serif;
}

footer {
  height: 12vh;
  background-color: var(--main-bg-color);
  color: white;
  font-family: "Lato", sans-serif;
}

.copy {
  position: relative;
  left: 10%;
}

.owner {
  position: relative;
  left: -5%;
  top: 5px;
}

.owner a {
  color: black;
}

.owner a:hover {
  color: rgb(90, 16, 211);
}
