/* CSS comments will explain what is happening as we go along */

@font-face {
    font-family: 'Goji';
    src: local('Bauhaus Goji Display 2.0'),
        url('/links/BauhausGojiDisplay2.0-ExtraBold.woff2') format('woff2'),
        url('/links/BauhausGojiDisplay2.0-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: bold;
}

/* psudeo element used to set css variables, using them for colour themes */
:root
{
  --col:  RGBA(255, 112, 117, 1.00);
  --bg:   RGBA(255, 235, 234, 1.00);
  --coffee: RGBA(170, 100, 90, 1.00);
  --food: RGBA(79, 186, 111, 1.00);
  --goods: RGBA(253, 183, 19, 1.00);
}

*, *:before, *:after {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
}
/* Everything we style here will affect the body of our html */
body, html
{
  font-size: 62.5%;  /* 1em = 10px */
  font-family: 'Goji','Space Mono', monospace; /* Space Mono linked to google fonts. one of my faves for a few years */
  background: var(--bg);
}

/* standard font settings for paragraph text */
p
{
  font-family: 'Goji','Space Mono', monospace; /* Space Mono linked to google fonts. one of my faves for a few years */
  font-size: 2em;  /* 1em = 10px */
}

h1 /* h1 styling */
{
  font-family: 'antre';
  font-weight: normal;
  font-style: normal;
  font-size: 4em;
}
.wrapper {
  margin-right: auto;
  margin-left:  auto;
  max-width: 100%;
  font-family: 'Goji', 'Space Mono', monospace;
  padding-bottom: 20px;
}



.header {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: left;
  position: absolute;
  bottom: 10px;
  left:0;
  color: var(--col);
  z-index: 99;
  width: 100%;
  padding: 10px;
  margin:10px;
  height: 75px;
}

.logo img{
 margin: 10px;
 bottom: 50px;
 position: absolute;
	max-width:600px;
}

.menu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  font-weight: 700;
  font-size: .75rem;
  color: var(--col);
  position: sticky;
  position: -webkit-sticky;
  bottom: 10px
}

.menu a {
    margin: 10px;
    text-decoration: none;
    color: var(--col);
}
.menu a:hover {
  text-decoration: underline;
  color: var(--coffee);
}

.menu a:active {
  text-decoration: underline;
  color: var(--col);
}

.menu a:focus {
  font-style: italic;
  text-decoration: underline;
  color: var(--col);
}

.menuitem{
  color: var(--col);
}

/* this section is for the active item in the menu - change body class to make it work*/
body.illo a.illo, body.photo a.photo, body.info a.info, body.contact a.contact, body.home a.home, body.archive a.archive {
font-weight: 700;
font-style: italic;
text-decoration: line-through;
}

.content{
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: left;
  align-items: left;
  margin-top:100px;
}

.item{
  /* width: 90%;
  max-height: 90vh; */
  flex: 0 1 90%;
  /* max-width:480px; */
  padding:10px;
}



.item img{
  max-width:100%;
  max-height:100%;
}

/* .hoverimage:hover::after {
    content: attr(title);
    position: absolute;
    width:100%;
    height:100%;
    color: var(--col);
    text-align:center;
    font-size: 2em;
    background:var(--bg);
    float: left;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: RGBA(255, 255, 255, 0.5)
} */



.abouttext{
    width:90%;
    color: var(--col);
    text-align: left;
}
.abouttext a {
  text-decoration: none;
  color: var(--col);
  font-weight: 700;
}
.abouttext a:hover {
  font-style: italic;
  text-decoration: underline;
  color: var(--col);
  text-decoration-color: #000;
}

.abouttext a:active {
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: #000;
}

.abouttext a:focus {
  font-style: italic;
  text-decoration: underline;
}


.infotext{
    width:90%;
    text-align: left;
    margin:20px;
    margin-top:100px;
    font-size: 3em;

}
.infotext p{
    line-height: 0em;
}


/* Responsive layout - makes a two column-layout*/
@media screen and (min-width:800px) and (max-width: 1200px)  and (orientation: landscape) {
  .content{
    justify-content: space-around;
    align-items: space-around;
    margin-top:0px;
  }
  .item {
    flex: 0 1 45%;
  }
  .header {
    justify-content: space-between;
  }
  .abouttext{
      width:75%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translateX(-50%) translateY(-50%);
      padding:100px;
    }
}/* Responsive layout - makes four columns */
@media screen and (min-width: 1201px) and (orientation: landscape) {
  .content{
    justify-content: space-evenly;
    align-items: stretch;
    margin-top:0px;
  }
  .item {
    flex: 0 1 20%;
  }
  .menu {
      font-size: 1rem;
  }
  .header {
    justify-content: space-between;
  }
  .abouttext{
      width:50%;
      font-size: 2em;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translateX(-50%) translateY(-50%);
      padding:100px;
    }
}
