/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* end of reset */




*{
box-sizing: border-box;
}

html, body{
  width: 100%;
  min-height:100vh;
}

body{
background-color: #ffffff;
color: #000000;
font-family: 'Bungee Inline', cursive;

/*
display: grid;

grid-template-columns: 10px auto 10px;
grid-column-gap: 0;

grid-template-rows: 2.2em auto 2.2em;
grid-row-gap: 0;

justify-items: center;
align-items: center;

background: linear-gradient(270deg, #8ca0ff, #ffffff);
background-size: 400% 400%;
animation: bg 26s ease infinite;
*/
}



.flex-center-vertically {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
}


h1 {
   font-size: 3.64em;
}

h2 {
     font-size: 2.1em;
}

p{
  font-size: 1.1em;
}

a{
	color: #551a8b;
}





/*
@media screen and (orientation:portrait) {
  grid-template-rows: 10px auto 20px;
}

@media screen and (orientation:landscape) {
  grid-template-rows: 2.2em auto 2.2em;
}




#vsebina{
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
}

p, span{
  font-family: inherit;
  white-space: pre;
}

@keyframes bg {
   0%{background-position:0% 50%}
   50%{background-position:100% 50%}
   100%{background-position:0% 50%}
}
*/
