@media only screen and (orientation: landscape){
  .wrapper{
    display: grid;
    grid-gap: 10px;
    grid-template-columns: auto 800px auto;
    grid-template-rows: auto auto;
    grid-template-areas:
           "header header header"
           ". main ."
    }
    main{
      grid-area: main;
    }
}


body{
  margin: 0;
  background-image: url("img/tumblr_static_tumblr-barn.jpg");
  background-attachment: fixed;
  color: rgb(200,200,200);
}

header{
  grid-area: header;
  width:100%;
  background-color: rgb(51,51,51);
  margin: 0 0 0 0;
  font-family: Arial, sans-serif;
}

header h1{
  margin:0;
  padding:0;
}

main{
  grid-area: main;
  width:100%;
}

article{
  background-color: rgba(20,20,20,0.8);
  color: rgb(220,220,220);
  font-family: Arial, sans-serif;
  margin: 10px 0 10px 0;
  padding: 5px;
}

article h1{
  border-bottom-style:solid;
  border-bottom-width: 2px;
  margin:0;
}

img{
  width: 100%;
  height: auto;
}

table{
  text-align: left;
}

td{
  vertical-align: top;
  padding-right: 10px;
}
td p{
  margin:0;
}

table.timer tr td:nth-child(2){
  text-align: right;
}

/* Hovering effect for month from https://codepen.io/shimdim/pen/NjyNNb*/
[data-title] {
  position: relative;
  cursor: help;
}

[data-title]:hover::before {
  content: attr(data-title);
  position: absolute;
  bottom: -26px;
  display: inline-block;
  padding: 3px 6px;
  border-radius: 2px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-family: sans-serif;
  white-space: nowrap;
}
[data-title]:hover::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 8px;
  display: inline-block;
  color: #fff;
  border: 8px solid transparent;
  border-bottom: 8px solid #000;
}
