html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  color: #555;
  font-family: serif;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.75rem;
}

ul, li {
  list-style-type: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.heading {
  letter-spacing: 3px;
  font-size: 3.0rem;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 3px skyblue solid;
  padding-bottom: 5px;
}

.fa-code {
  font-size: 4rem;
  transition: .3s;
}

.fa-code:hover {
  color: cadetblue;
}

.fa-js {
  color: #555;
  font-size: 4rem;
  transition: .3s;
}

.fa-js:hover {
  color: coral;
}

.fa-vuejs {
  color: #555;
  font-size: 4rem;
  transition: .3s;
}

.fa-vuejs:hover {
  color: forestgreen;
}

.header {
  color: black;
  position: relative;
}

.header__text {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}

.header__text ul {
  font-size: 1.125rem;
}

.header__text ul li {
  transition: background-color .5s;
}

.header__text ul li:hover {
  background-color: rgba(100, 100, 100, 0.5);
}

video {
  object-fit: cover;
  object-position: center top;
  opacity: .6;
  width: 100vw;
  height: 100vh;
}

.skill {
  min-height: 400px;
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 160px;
}

.skill__list li {
  list-style: square;
}

.works {
  background-color: #eee;
  padding-top: 60px;
  padding-bottom: 20px;
}

.works__box {
  background-color: white;
  padding: 5%;
  transition: .3s;
}

@media (max-width: 767px) {
  .works__box {
    margin: 15px auto;
  }
}

@media (max-width: 576px) {
  .works__box {
    max-width: 280px;
  }
}

.works__box:hover {
  background-color: #aaa;
}

.works__box__img {
  height: 180px;
  object-fit: cover;
  border: 1px solid #ddd;
}

footer {
  height: 40px;
  background-color: #888;
}

footer p {
  line-height: 40px;
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-item {
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=main.css.map */