@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");

* {
  margin: 0;
  padding: 0;

  box-sizing: border-box;

  font-family: "Lato", sans-serif;
}

.name_website {
  font-size: 20px;
  font-weight: bold;
}

nav {
  width: 100%;

  display: flex;
  justify-content: space-between;

  background-color: #060d17;
  color: aquamarine;

  padding: 30px;
}

.search {
  background-color: #333333;
  border: 2px solid var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 1rem;
  color: black;
  font-family: inherit;
}

.search:focus {
  outline: 0;
  background-color: white;
}

.search::placeholder {
  color: #fafafa;
}

.card {
  width: 100%;
  max-width: 200px;

  background-color: #333333;
  border-radius: 6px;
  overflow: hidden;

  text-decoration: none;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  background-color: #060d17;
  padding: 30px;
}

.card__image {
  width: 100%;
}

.card__content {
  padding: 10px;

  color: white;
}

.hero {
  width: 100%;
  height: 100px;

  display: grid;
  place-items: center;
  background-color: #060d17;
  color: aquamarine;

  font-size: 30px;
  font-weight: bold;
}
