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

/* header */
.header-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('/tokyo-indies-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.header-banner img {
  padding: 20px;

  width: 360px;
  max-width: 100%;
  /* align-self: stretch; */
}

nav {
  padding: 0px 20px 20px 20px;
  align-self: end;
  margin-left: auto;
}

nav a {
  text-decoration: none;
  color: #CEE2DA;
  font-size: 24px;
  font-weight: 600;
  margin-right: 20px;
  white-space: nowrap;
}

nav a:hover {
  color: #90CCC4;
}

/* text */
h2,
h3,
h4,
h5,
h6,
strong,
b {
  color: #90CCC4;
}

h1 {
  color: #4D6176;
}

a {
  color: #5BB5A9;
}

a:hover {
  color: #4D6176;
}

/* body / posts */

html {
  height: 100%;
}

body {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  font-style: normal;
  background-color: #F3F6F5;
  color: #1E2320;
  max-width: 100%;
  padding: 0;
  height: 100%;
  /* push footer down */
  display: flex;
  flex-direction: column;
}

main {
  /* push footer down */
  flex: 1;
  padding: 20px;
  max-width: 80%;
  width: 700px;
  margin: auto;

}

blockquote {
  border-left: 2px solid #90ccc499;
  color: #1E232099;
  padding-left: 20px;
  font-style: italic;
}

/* post time */
time {
  color: #4D6176;
}

/* pagination */
div.pagination {
  text-align: center;
  padding-bottom: 8px;
}

ul.pagination {
  width: 100%;
  display: block;
  list-style-type: none;
  margin: auto;
  padding: 0;
  position: relative;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
}

ul.pagination li {
  display: inline;
  list-style-type: none;
  font-size: 24px;

}

ul.pagination a {
  text-decoration: none;
  padding-left: 5px;
  padding-right: 5px;
}

/* footer */

footer {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('/tokyo-indies-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

small {
  color: #CEE2DA;
}

/* socials */

.socials {
  text-align: center;
  background-color: #DDF0E799;
  padding-top: 12px;
  padding-bottom: 8px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  justify-content: space-evenly;
  display: flex;
  margin-top: 20px;
  margin-left: 20%;
  margin-right: 20%;
}

.socials-svg {
  filter: invert(82%) sepia(16%) saturate(580%) hue-rotate(123deg) brightness(93%) contrast(87%);
}

img.socials-svg {
  height: 48px;
  width: 48px;
}

.socials-svg:hover {
  filter: invert(36%) sepia(16%) saturate(780%) hue-rotate(170deg) brightness(94%) contrast(86%);
}

/* recent posts */

.recent,
.recent-image {
  background-color: #DDF0E799;
  padding: 0px 30px 0px 30px;
  margin: 30px 0px 30px 0px;
  height: 250px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;

}

.recent {
  height: 250px;
}

.recent-image {
  height: 500px;
}

.recenttext,
.recenttext-image {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.recenttext {
  height: 200px;
}

.recenttext-image {
  height: 450px;
}

.recenttext h2:hover,
.recenttext-image h2:hover {
  color: #4D6176;
}

.recentlink {
  float: right;
}

.recentlink a {
  color: #90CCC4 !important;
}

.recentlink a:hover {
  color: #4D6176 !important;
}

.recent a,
.recent-image a {
  text-decoration: none;
  color: #1E2320;
}

/* small screen */

@media only screen and (max-width:768px) {
  nav a {
    font-size: 20px;
    margin-right: 10px;
  }

  .socials {
    margin-left: 0%;
    margin-right: 0%;
  }

}
