@import url('https://fonts.googleapis.com/css2?family=Luxurious+Roman&display=swap');


html {
    height: 100%;
}

body {
    font-family:'Luxurious Roman', cursive, 'Helvetica';
    color: #000;
    margin: 60px auto;
    width: 70%;
}

.bg {
  animation:slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #AAB6FB 50%, #FB7B8E 50%);
  bottom:0;
  left:-50%;
  opacity:.5;
  position:fixed;
  right:-50%;
  top:0;
  z-index:-1;
}

.bg2 {
  animation-direction:alternate-reverse;
  animation-duration:4s;
}

.bg3 {
  animation-duration:5s;
}

.content {
  background-color:rgba(255,255,255,.8);
  border-radius:.25em;
  box-shadow:0 0 .25em rgba(0,0,0,.25);
  box-sizing:border-box;
  left:50%;
  padding:10vmin;
  position:fixed;
  text-align:center;
  top:50%;
  transform:translate(-50%, -50%);
}

@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}

nav ul, footer ul {
    font-family:'Luxurious Roman', cursive, 'Helvetica';
    padding: 0px;
    list-style: none;
    font-weight: bold;
}
nav ul li, footer ul li {
    display: inline;
    margin-right: 20px;
    font-family:'Luxurious Roman', cursive, 'Helvetica';
}
a {
    text-decoration: none;
    color: #FFFFFF ;
    font-family:'Luxurious Roman', cursive, 'Helvetica';
}
a:hover {
    text-decoration: underline;
}
h1 {
    font-size: 3em;
    font-family:'Luxurious Roman', cursive, 'Helvetica';
}
p {
    font-size: 1.3em;
    line-height: 1.4em;
    color: #000;
    font-family:'Noto Sans JP','Helvetica';
}    
h3 {
    font-size: 2em;
    font-family:'Luxurious Roman', cursive, 'Helvetica';
}
ul.posts { 
    margin: 20px auto 40px; 
    font-size: 1.5em;
}
footer {
    border-top: 1px solid #FFFFFF;
    font-size: .8em;
    font-family:'Luxurious Roman', cursive, 'Helvetica';
}
ul.posts li {
    list-style: none;
    font-family:'Luxurious Roman', cursive, 'Helvetica';
}
