/* MAIN CSS */

body {
 cursor: cell;
 font-family: 'OpenSans', sans-serif;
 font-size: 0.95em;
 color: black;
 background-color: white;
 background-image: url('/images/bg.png');
 /*
 background-attachment: fixed;
 background-size: cover;
 background-repeat: no-repeat;
 */
 margin: 0px;
 
 animation: slide 50s linear infinite;
}

@keyframes slide {
 from {background-position: bottom left;}
 to {background-position: top right;}
}

#sticker {
 position: relative; 
}

#sticker :hover {
animation-name: bounce;
animation-duration: 1s;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
}

@keyframes bounce {
0% {
  transform: translate(0px, 0px);
}
50% {
  transform: translate(0px, -10px);
}
100% {
  transform: translate(0px, 0px);
}
}

img {
 transition: transform .2s;
}

img:hover {
 transform: scale(1.1);
}

.wrapper {
 text-align: justify;
 text-justify: inter-word;
 max-width: 650px;
 background-color: white;
 box-shadow: 0px 0px 15px white;
 background-image: url('');
 margin: auto;
}

.top {
 background-color: white;
 position: -webkit-sticky;
 position: sticky;
 top: 0;
}

.header {
 text-align: center;
 padding: 0.5px;
 color: black;
 background-color: none;
 background-image: url('');
}

.nav {
 text-align: center;
 padding: 0px;
 padding-bottom: 15px;
 background-color: none;
 background-image: url('');
}

.nav a{
 color: #5c5f77!important;
 text-decoration: none;
}

.button {
 text-align: center;
 display: inline-block;
 padding: 3px;
 margin-right: 15px;
 text-decoration: none;
 background-color: none;
}

.main {
 border-radius: 15px;
 padding-left: 20px;
 padding-right: 20px;
}

.info {
 border: none;
 padding: 5px;
}

.footer {
 background-color: none;
 background-image: url('');
 text-align: center;
 color: #5c5f77;
 font-size: .94em;
 padding: 3px;
}

.footer a{
 color: #5c5f77!important;
}

.column {
 float: left;
 width: 50%;
 padding: 0px;
}

.row:after {
 content: '';
 display: table;
 clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column {
 width: 100%;
}
}

.collapsible {
 background-color: white;
 font-family: 'OpenSans';
 font-size: 1em;
 color: #9da0af;
 border: none;
 width: 100%;
 cursor: help;
 padding: 10px;
 text-align: left;
 font-weight: bold;
}

.content {
 background: none;
 padding: 0 18px;
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.2s ease-out;
}

.collapsible:after {
 content: '▸';
 float: left;
}

.active:after {
 content: "▾";
}

.tooltip {
 position: relative;
 display: inline-block;
 padding: 3px;
}

.tooltip .tooltiptext {
 visibility: hidden;
 font-size: 0.85em;
 text-align: center;
 width: 100%;
 position: absolute;
 z-index: 1;
 top: 100%;
 left: 50%;
 margin-left: -50%;
 opacity: 0;
 transition: opacity 0.5s;
}

.tooltip:hover .tooltiptext {
 visibility: visible;
 opacity: 1;
}

h1 {
 font-size: 1.9em;
}

.header h1 {
 font-family: '?', sans-serif;
}

strong {
 font-weight: bold;
}

a:link {
 color: blue;
}

a:visited {
 color: orangered;
}

a:hover {
 cursor: alias;
 color: mediumblue;
 font-style: italic;
}

a:active {
 color: mediumblue;
}

::selection {
 color: black;
 background: #dfe2e8;
}

hr {
 border-color: #5c5f77;
}

ul {
 list-style: '╰ ';
 list-style-position: inside;
}

.title {
 background: #484a5e;
 color: white;
 line-height: 1.5;
}

.entry {
 border-left: 3px solid #dfe2e8;
 padding-left: 10px;
 background-color: #e8eefa;
}

.friend {
 position: fixed;
 bottom: 10px;
 left: 15px;
}

#statuscafe {
 font-family: Arial;
 font-size: 0.9em;
 color: #9da0af;
 padding: 2px;
 background-color: none;
 border: 1px solid ;
 max-width: 70%;
}

#statuscafe a{
 color: #9da0af;
}

@font-face {
 font-family: 'OpenSans';
 src: url('/fonts/OpenSans.ttf');
 font-weight: normal;
}

@font-face {
 font-family: 'Orbit';
 src: url('/fonts/Orbit-Regular.ttf');
 font-weight: normal;
}