/* RESET & BASIC STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
  --white: #fff;
  --header-bg: #d47952;
  --footer-bg: #191717;
}

a {
  color: inherit;
}

.container-footer {

  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}

/* MAIN STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 3vh 0;
  text-align: center;
  background: var(--header-bg);
}

.site-header > div {
  display: flex;
  justify-content: center;
}

.site-header a {
  line-height: 1;
}


.site-main {
  display: flex;
  align-items: center;
  flex-grow: 1;
  text-align: center;
  margin: 30px 0;
}

.site-main h1 {
  line-height: 1.2;
  margin: 0 0 20px;
}

.site-footer {
  padding: 30px 0;
  color: var(--white);
  background: var(--footer-bg);
}

.site-footer .logo-wrapper div {
  font-style: italic;
  font-size: 15px;
  line-height: 1;
}

.site-footer .widgets-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid rgba(255,255,255,0.2);
  margin-top: 20px;
}

.site-footer h5 {
  font-size: 20px;
  margin: 20px 0;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul:not(.socials) li + li {
  margin-top: 10px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer .socials {
  display: grid;
  grid-template-columns: auto auto auto auto ;
  justify-content: flex-start;
  grid-gap: 15px;
}

.site-footer .socials svg {
  fill: var(--white);
}


@media (max-width: 650px) {
  .site-footer .widgets-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CREATOR STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.creator {
  position: fixed;
  right: 0;
  bottom: 50px;
  display: flex;
  align-items: center;
  padding: 5px;
  font-size: 0.75em;
  background: var(--white);
}
.creator a {
  display: flex;
  margin-left: 4px;
}