@import url("https://use.typekit.net/pdd8igz.css");

* {
  margin: 0;
  padding: 0;
}

body {
  background: url(../img/page-bg.jpg) no-repeat;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-header {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
}
.page-header .main-menu {
  gap: 5vh;
  list-style: none;
  display: flex;
  color: goldenrod;
  background-color: darkgreen;
  padding: 1rem;
}

.page-header .logo img {
  width: 20rem;
}

.page-content {
  display: flex;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  gap: 20px;
  flex: 1;
  flex-direction: column;
}
.page-content > div:nth-child(even) {
  background: lightgray;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero .arrow {
  height: 100px;
  width: 100px;
  background: url(../img/arrow_downward_white_24dp.svg) no-repeat center #333;
  background-size: 80%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
}

.input {
  display: flex;
  width: 100%;
  max-width: 400px;
  background: blue;
}
.input input {
  height: 40px;
  border: none;
  padding: 0 10px;
  width: calc(100% - 40px);
  font-size: 24px;
  outline: none;
}
.input button {
  height: 40px;
  width: 40px;
  background: url(../img/search_white_24dp.svg) no-repeat center darkgreen;
  border: none;
  background-size: 60%;
}

.colum-mid-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1080px;
}
.parent {
  width: 100%;
  height: 90vh;
  max-width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.parent img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.parent > div {
  display: flex;
  width: 220px;
  height: 220px;
  color: green;
}

.parent > .child1,
.child2,
.child3,
.child4,
.child5,
.child6,
.child7,
.child8,
.child9 {
  justify-content: center;
  align-items: center;
}

.parent div div {
  display: flex;
  height: 50px;
  width: 50px;
  align-items: center;
  font-size: 20px;
}

.page-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-footer .footer-img {
  display: flex;
  color: whitesmoke;
  background: darkgrey;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.page-footer .footer-colum-top {
  display: flex;
  color: whitesmoke;
  background: darkgrey;
  width: 100%;
  flex-direction: column;
  align-items: center;
  font-family: nueva-std, serif;
}

.page-footer .footer-colum-bot {
  display: flex;
  background: rgb(67, 66, 66);
  width: 100%;
  flex-direction: column;
  align-items: center;
  color: whitesmoke;
  font-family: Arial, Helvetica, sans-serif;
}
