@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
:root {
  font-size: 16px;
  font-family: 'Varela Round', sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

header {
  -webkit-box-shadow: 0 0 5px #000;
          box-shadow: 0 0 5px #000;
  background-color: lightblue;
}

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 4rem;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
}

.nav-list a {
  text-decoration: none;
  color: #000;
}

.nav-list a:hover {
  color: blue;
}

.nav-list .nav-list li {
  padding-right: 2rem;
  padding-left: 2rem;
}

.nav-list .logo {
  color: green;
  font-size: 1.2rem;
}

main {
  height: calc(100vh - 4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.color-marker {
  font-size: 2.5rem;
  padding: .5em;
  background: #222;
  color: #dfd;
  -webkit-box-shadow: 0 0 5px #000;
          box-shadow: 0 0 5px #000;
  border-radius: .1em;
  outline: 1px solid rgba(221, 255, 221, 0.5);
  outline-offset: -.05em;
}

.color-marker .color {
  text-transform: uppercase;
  color: skyblue;
}

/*============
responsive
============*/
@media (max-width: 50rem) {
  .color-marker {
    font-size: 1.5rem;
  }
}

@media (max-width: 30rem) {
  .color-marker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: .5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 21.125rem) {
  :root {
    font-size: 10px;
  }
}

/*============
/responsive
============*/
button {
  padding: .5em;
  margin: .5em;
  font-size: 1.8rem;
}
/*# sourceMappingURL=style.css.map */