/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

body {
  color: #292923;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
}

p {
  color: inherit;
}

img {
  width: 100%;
}

.home {
  margin: 0 auto;
  padding: 57px 27px 27px 27px;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  min-height: 100vh;
}

.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 37px;
  height: 7vw;
  background-color: white;

}

.top > div {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #111;
  color: white;
  background-color: rgba(114, 57, 40, .3);
  height: 37px;
  height: 7vw;
}

a {
  text-decoration: none;
  color: white;
}


a, p {
  font-size: 3.5vw;
  color: rgb(114, 57, 40);
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 27px 0;
  position: relative;
  margin-top: 17px;
}

footer::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(114, 57, 40, .4);

}

.yes-mobile {
  display: none;
}



@media only screen and (max-width: 600px) {

  .home {
    padding: 57px 17px 17px 17px;
  }

  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
  }

  .no-mobile {
    display: none;
  }

  .yes-mobile {
    display: flex;
  }

  .top, .top > div {
    height: 37px;
  }

  a, p {
    font-size: 4vw;
  }

}