/* The styleSheet on 15-Apr-2020 */
:root {
  --om-white-color: #ffffff;
  --om-gray-color: #636b6f;
}

html {
  box-sizing: border-box;
}

body {
  background-color: var(--om-white-color);
  color: var(--om-gray-color);
  font-family: "Nunito", sans-serif;
  font-weight: 200;
  height: 100vh;
  margin: 0;
}

.bg-aliceblue-color {
  background-color: aliceblue;
}

.bg-site {
  background-color: bisque;
}

.full-height {
  height: 100vh;
}

.flex-center {
  align-items: center;
  display: flex;
  justify-content: center;
}

.position-ref {
  position: relative;
}

.top-center {
  font-size: 1.5rem;
}

.content {
  text-align: center;
}

.title h1 {
  font-size: 5.25rem;
  font-weight: 200;
}

.title sub {
  bottom: -0.25em;
  font-size: 1.5rem;
}

.links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.links a,
.links button {
  width: 10vw;
  display: inline-block;
  color: var(--om-gray-color);
  padding: 0.25em;
  margin: 0.25em;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-decoration: none;
  text-transform: uppercase;
}

.links > a:hover,
.links > button:hover {
  box-shadow: 0 0 1rem 0;
}

.m-b-sm {
  margin: 1em;
}

.m-b-md {
  margin: 2em;
}

.m-b-lg {
  margin: 4em 2em;
}

.m-b-xl {
  margin: 8em 2em;
}

.skills-container {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 1em;
  row-gap: 1em;
}

.skills-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 0.5em;
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
}

.skills-item label {
  margin: 0 0.5em;
}

.skills-item meter {
  width: 15em;
}

@media only screen and (max-width: 768px) {
  .m-b-lg,
  .m-b-xl {
    margin: 2em;
  }

  .title h1 {
    font-size: 2rem;
  }

  .top-center,
  .title sub {
    font-size: 1.15rem;
  }

  .links {
    flex-direction: column;
  }

  .links a,
  .links button {
    width: 100%;
    margin: 0.5em 0;
  }

  .skills-container {
    grid-template-columns: auto;
    column-gap: 0;
    row-gap: 1em;
  }

  .skills-item {
    flex-direction: column;
  }
}
