/*
Theme Name:   Hoppla Zine
Theme URI:    https://zine.hoppla.id/
Description:  Hub for internet experimentation, convergence, and knowledge exchange. 
Version:      1.0
Author:       /rlirl/ - //
Author URI:   https://zine.hoppla.id/
*/


/* Screen Responsives */
@media (min-width:320px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */ }
@media (min-width:480px)  { /* smartphones, Android phones, landscape iPhone */ }
@media (min-width:600px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */ }
@media (min-width:801px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */ }
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */ }
@media (min-width:1281px) { /* hi-res laptops and desktops */ }

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap');


/* Root */
:root {
  --main-bg-color: black;
  --main-text-color: white;
  --main-hover-color: #FA3100;
  --primary-accent-color: #FA3100;
  --secondary-accent-color: #0000ff;
}

*,
*:before,
*:after {
  	box-sizing: inherit;
  	padding: 0px;
  	margin: 0px;
  	letter-spacing: 0.3px;
}


/* Title */

main {
  display: flex;
  justify-content: center;
/*   min-height: calc(100vh - var(--default-em) * 25); */
}
.container {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: auto;
}

main {
  position: relative;
}
main img {
  max-width: 100%;
  height: auto;
  position:relative;
  inset: 0;
  object-fit: contain;
}

  
/* Body */

body {
  	background-color: var(--main-bg-color);
  	font-family: "IBM Plex Mono", sans-serif;
	height: 100%;
  	width: 100%;
  	min-height: 100vh;
  	display: flex;
    flex-direction: column;
    flex: 1;
}

a:any-link {
	color: var(--main-text-color);
	text-decoration: none;
	cursor: pointer !important;
}

a:hover {
	color: var(--primary-accent-color);
}

.body-text-home {
	font-size: 1.1vw;
	color: var(--main-text-color);
	text-align: center;
}


/* Navigation */

nav {
	position: absolute;
}

.menu {
	background-color: var(--main-bg-color);
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	max-width: 720px;
  	margin: 0px auto 20px auto;
  	padding-top:20px;
  	height: 5vh;
  	list-style: none;
}

.menu li {
 	width: 100px;
 	height: 30px;
 	transition: background-position-x 0.9s linear;
 	text-align: center;
 	font-size: 12px;
 	letter-spacing: 1px;
 	font-weight:700;
 	color: var(--main-text-color);
 	}
 	
/* Sticky Navigation */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* Tagline */

.tagline-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin:0 auto;
	padding: 7px;
}

.tagline {
	color: var(--main-text-color);
	font-size: 1 vw;
	font-weight: 600;
	margin-bottom: 10px;
	
}

.tagline-container-2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--main-text-color);
	margin:0 auto 20px auto;
	padding: 10px;
	background-color: var(--secondary-accent-color);
	}

.tagline-2 {
	color: var(--main-text-color);
	font-size: 1.1vw;
	font-weight: 600;
}

.tagline-2::before, .tagline-2::after {
	content: "///";
	padding: 0 10px;
	letter-spacing: 0;
	animation: blink-animation 0.4s steps(5, start) infinite;
    -webkit-animation: blink-animation 0.4s steps(5, start) infinite;
    }
    	@keyframes blink-animation {
        to {
        	visibility: hidden;
        	}
      	}
	  	@-webkit-keyframes blink-animation {
        to {
          visibility: hidden;
        }
}

.tagline-container-sub {
	border-top:1px solid var(--main-text-color);
	text-align: center;	
}

.tagline-sub {
	color: var(--main-text-color);
	font-size: 12px;
	font-weight: 400;
	text-align: center;	
}

/* Authors */

table.AuthTable {
  background-color: #0000FF;
  width: 60%;
  height: auto;
  border-collapse: collapse;
}

table.AuthTable td, table.AuthTable th {
  padding: 3px 10px;
}

table.AuthTable tbody td {
  font-size: 12px;
  color: #FFFFFF;
}

table.AuthTable thead {
  background: #0000FF;
  border-bottom: 1px solid #FFFFFF;
}

table.AuthTable thead th {
  font-size: 14px;
  font-weight: bold;
  color: #FFFFFF;
}

/* Table Archive Single */
table.singleAuth {
	background-color: #0000FF;
	width: 60%;
	height: auto;
	border-collapse: collapse;
  }
table.singleAuth td {
    background-color: #0000ff;
	border-bottom:1px solid rgb(255, 255, 255);
	padding: 3px;
    color: #ffffff;
    font-size: 12px;
	padding-left:5px;
	padding-right:5px
}
table.singleAuth th {
    background-color : #0000ff;
    color: #ffffff;
    font-size: 14px;
	padding-left:5px;
	padding-right:5px;
	border-bottom:1px solid rgb(255, 255, 255);
}
tr:nth-child(even) 
    td{background-color:#949494}

tr:hover td {
	background-color: var(--main-bg-color);
	color: var(--main-text-color);
	cursor: pointer;
	transition: 0.5s;
   }   

/* Footer */
footer {
	text-align: center;
	margin-top: 40px;
	border-top: 1px solid var(--main-text-color);
	background: var(--main-bg-color);
}
.footer-text {
	color: var(--main-text-color);
	text-align: center;
	font-size: 12px;
	font-weight: 400;
}

div.footer-text {
	margin-top: 20px;
	margin-bottom: 20px;
}