body {
  font-family: "Sacramento", cursive;
}

nav {
  text-align: center;
}
nav ul {
  margin: 2em;
  padding: 0;
}
@media screen and (max-width: 767px) {
  nav ul {
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0.1em;
    margin-right: 0.1em;
  }
}
nav ul li {
  list-style: none;
  display: inline-block;
  width: 15%;
}
@media screen and (max-width: 767px) {
  nav ul li {
    width: auto;
    padding: 0 0.5em;
  }
}
nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 2.5em;
}
@media screen and (max-width: 767px) {
  nav ul li a {
    font-size: 1.3em;
  }
}

.main {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(portfolio/images/yotei.JPG);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  height: 650px;
}
@media screen and (max-width: 767px) {
  .main {
    background-image: url(portfolio/images/back.JPG);
    height: 680px;
  }
}
.main p {
  padding-top: 2em;
  font-size: 2em;
  color: white;
}
.main h2 {
  font-size: 3em;
  color: white;
}
@media screen and (max-width: 767px) {
  .main h2 {
    font-size: 1.9em;
    text-align: center;
    padding-top: 0.5em;
  }
}
.main .prof {
  padding-top: 1em;
  font-size: 1.2em;
  font-family: "Zen Kurenaido", sans-serif;
  text-shadow: 1px 2px 3px #464545;
}
@media screen and (max-width: 767px) {
  .main .prof {
    font-size: 1em;
  }
}
.main img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .main img {
    display: none;
  }
}

.footer p {
  text-align: center;
  font-size: 1.5em;
}

.rotate {
  display: inline-block;
  animation: 4s linear infinite rotation3;
  font-size: 2.5em;
  font-family: "Sacramento", cursive;
}

@keyframes rotation3 {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */