@charset "UTF-8";


@font-face {
  font-family:'Zen Serif';
  src:url('../fonts/ZEN-SERIF-TTF-Regular.woff2');
  font-weight: 400;
  font-style:normal;
}

/* inter-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/inter-v20-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-200italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  src: url('../fonts/inter-v20-latin-200italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/inter-v20-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/inter-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/inter-v20-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



:root {
  --color: #ffffff;
  --padding-x: 100px;
  --padding-y: 150px;
}

html, body {
  margin:0;
  padding: 0;
  line-height: 1.6;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #DDD;
  font-weight: 200;
  font-size: 16px;
}

* {
  box-sizing: border-box;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

img {
  max-width: 100%;
}

ul {
  padding-left: 20px;
}

ul > li, ol > li {
  margin-bottom: 10px;
}

a {
  color: #0A0;
  text-decoration-thickness: 1px;
  font-weight: 500;
}

h1, .h1 {
  font-family: "Zen Serif", serif;
  font-size: 25px;
  font-weight: bold;
  margin:0;
  line-height: 1.3;
}

h2, .h2 {
  font-family: "Zen Serif", serif;
  font-size: 20px;
  margin:10px 0 0;
  line-height: 1.3;
}

h3, .h3 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}

p {
  margin: 20px 0 30px;
}

figure {
  margin: 30px 0;
  font-size: 12px;
}


header {
  background-color: #DDD;
  border-bottom: 1px solid #000;
}

header > .container {
  padding-bottom: 10px;
  height: 75px;
  display:flex;
  flex-direction: column;
  justify-content: flex-end;
}

section, footer {
  width: 100%;
}
.container {
  padding: 10px 20px;
}


#intro {
  padding-left: 20px;
  padding-right: 10px;
  border-bottom: 1px solid #000;
}

#intro > .container {
  border-left: 1px solid #000;
}

#intro p {
  margin:0;
}

.intro-bottom-content {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}




#index {
  position: relative;
  padding: 30px 0 50px;
  font-size: 14px;
}
#index::before {
  content:"";
  display: block;
  position: absolute;
  left:0;
  top:50%;
  transform: translate(0, -50%);
  z-index: -1;
  width:50%;
  height:0;
  padding-top:50%;
  background-image: url("../img/background.png");
  background-position: center;
  background-size: cover;
  filter: blur(200px);
  border-radius: 100%;
  opacity: 0.8;
}

.index-table-header {
  font-weight: 400;
  border-bottom: 1.5px solid #000;
  padding: 20px 0 5px;
}
.index-table-row-c {
  color: #000;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  margin:0;
}
a.index-table-row-c {
  text-shadow: 0 0 10px transparent;
  transition: all ease .4s;
}
a.index-table-row-c:hover {
  text-shadow: 0 0 5px #0F0;
}
.index-table-title {
  flex-basis: calc(60% - 5px);
}
.index-table-name, .index-table-category {
  flex-basis: calc(40% - 5px);
}


.index-table-entry {
  padding: 15px 0;
  border-bottom: 1px solid #444;
}


#entry-head {
  margin-top: 30px;
  padding: 20px 0 10px;
  position: relative;
  text-align: center;
}
#entry-head::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background-color: #fff;
  border-radius: 100%;
  background-image: url("../img/background.png");
  background-position: center;
  background-size: cover;
  filter: blur(10px);
}
.head-info {
  width: 75%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);  
}

#entry-main-content p:last-of-type {
  margin-bottom: 20px;
}

#back-to-main p {
  margin:0 0 50px;
}


footer {
  margin-top: 50px;
}
footer p {
  margin: 15px 0;
  font-size: 12px;
}
.ft-logos {
  display: flex;
  align-items: center;
}
.ft-logos img {
  display: inline-block;
  width:120px;
  height: auto;
  margin-right: 20px;
}


@media screen and (max-height: 500px) {
}

@media screen and (min-width: 500px) {
  .container {
    padding-left: 50px;
    padding-right: 50px;
  }
  #intro {
    padding-left:50px;
  }
  #intro > .container {
    padding-left: 20px;
  }
}


@media screen and (min-width: 700px) {
  .container {
    padding-left: 25vw;
    padding-right: 25vw;
  }
  #intro {
    padding-left:25vw;
  }
  #index::before {
    left: 20vw;
  }
}


@media screen and (min-width: 800px) {
}


@media screen and (min-width: 1000px) {
}

@media screen and (min-width: 1200px) {
}

@media screen and (min-width: 1500px) {
}

@media screen and (min-width: 1920px) {
}
