@charset "UTF-8";

header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px auto 60px auto;
}

header .pic {
  margin-right: 20px;
}

header .pic img {
  width: 500px;
}

body {
  background: url(../img/bg-sprincle2.png) repeat center / contain;
  background-color: #223946;
  color: #fff;
}

.content .col-left,
.content .col-right {
  width: 50%;
}

.content .col-left {
  margin-right: 30px;
  text-align: center;
}

.content .col-left .pic {
  margin-bottom: 30px;
}

.site-btn {
  width: 300px;
  margin: 0 auto;
  color: var(--secondary-color);
  background-color: #e8d034;
  border-radius: 50px;
  /* box-sizing: border-box; */
  animation: btn 2s linear infinite alternate;
}

@keyframes btn {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(1);
  }

  60% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.site-btn a {
  display: inline-block;
  padding: 10px 15px;
  width: 100%;
  font-weight: 700;
  font-size: 30px;
  transition: all 0.3s;
  border-radius: 50px;
  /* box-sizing: border-box; */
}

.site-btn a:hover {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: #e8d034;
  /* box-sizing: border-box; */
}

.summary-web dt {
  color: #e8d034;
}

#web .works {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
}

#web .works .pic {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  header .pic img {
    width: 350px;
  }
  #web .works {
    width: 90%;
  }
}
