:root {
  --Primary: #80cb97;
  --Background: #e0ebe3;
  --Text: #333333;
  --White: #ffffff;

  --Regular: 400;
  --Bold: 500;
}

html,
#app,
main {
  min-height: 100%;
}

html {
  font-size: 8px;
}

body {
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.8rem;
  line-height: 1.7em;
  margin: 0;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, “Roboto”, “Droid Sans”, “Helvetica Neue”, Helvetica, Arial, sans-serif;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--Background);
  color: var(--Text);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

*:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.2em;
  font-weight: var(--Bold);
}

h1 {
  font-size: 6rem;
  margin-bottom: 6rem;
}

h3 {
  font-size: 2.4rem;
  margin-bottom: 3.6rem;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  font-weight: var(--Bold);
}

a:hover {
  text-decoration: underline;
}

p {
  line-height: 1.5em;
  font-size: 2.4rem;
  margin-top: 0;
}

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

img {
  max-width: 100%;
  max-height: 100%;
}

header {
  background-color: var(--Primary);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0;
  margin-bottom: 6rem;
  font-size: 1.6rem;
  text-transform: uppercase;
}

footer {
  background-color: var(--Text);
  padding: 4.8rem 0;
  color: #666666;
  font-size: 1.2rem;
}

footer p {
  color: white;
  font-size: 1.2rem;
}

.wrap {
  margin: 0 auto;
  max-width: 100rem;
  padding: 0 3rem;
}

.content {
  margin-bottom: 6.4rem;
}

.logo {
  color: var(--Text);
  max-width: 15rem;
}

.logos li {
  width: 25rem;
  height: 25rem;
  padding: 3rem;
  margin: 0 auto;
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.logo-lazy-coconuts {
  background-color: #d9b8d8;
  padding: 4rem !important;
}

.logo-smell-project {
  background-color: #ffffff;
}

.logo-gentle-creatures {
  background-color: #82D9D9;
}

.button {
  display: inline-block;
  background-color: var(--White);
  padding: 0 4rem;
  height: 6rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 6rem;
  border-radius: 2rem;
}

.subtitle {
  font-size: 2.4rem;
  margin: 0 auto;
  margin-bottom: 4rem;
  max-width: 58rem;
}

.underline {
  position: relative;
}

.underline:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.6rem;
  height: 0.2rem;
  width: 100%;
  background-color: var(--Primary);
}

@media only screen and (min-width: 600px) {
  html {
    font-size: 10px;
  }
}
