/*----------------------------------------------------------------------
index.css holds CSS3 style definition used by index.html in the website.
Application: Website CultLib
Platform   : CSS3
------------------------------------------------------------------------
Copyright  : http://creativecommons.org/publicdomain/zero/1.0/
Developed  : Hartwig Thomas, Zurich, Switzerland, 2021
Created    : June 2021, Hartwig Thomas
----------------------------------------------------------------------*/
/*======================================================================
media-independent rules
======================================================================*/
@import "sfpd.css";

.homebutton 
{
  background-color: var(--color_orange);
}

main>img
{
	width: 100%;
  height: auto;
}

main>div
{
	width: 100%;
  height: auto;
	overflow-y: auto;
}

main>div>p
{
  font-size: 12pt;
}

@media (orientation: landscape)
{
	main>img
	{
    height: 100%;
    max-height: var(--main_height);
    width: var(--main_height);
  }
  
  main>div
  {
    height: 90%;
    width: calc(95% - var(--main_height));
  }

  main>div>p
  {
    margin-top: 0;
  }
  
}

