/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }
body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222; 
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;}

 /* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }
h2 { font-size: 73px; line-height: 1.25; font-weight: 600; text-transform: uppercase; color:white; text-rendering: optimizeLegibility;
} }

.cont {

    display: table;
    height: 100%;
    width:100%;
}

.innertop {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height:50%;
    width: 100%; 
background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),url(../images/port.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    clear: both;
    background-attachment: scroll;
    transition: box-shadow 0.3s ease-in-out;
}

.innertop:hover {
box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
transition: box-shadow 0.3s ease-in-out;
}

.toptext {
    position: absolute;
    left: 5%;
    bottom: 5%;
}

.bottext {
    position: absolute;
    left: 5%;
    bottom: 5%;
}

.innerbot {
    position: absolute;
    left: 0%;
    top: 50%;
    bottom: 0;
    right: 0; 
    width:100%;
    height:50%;
	background: url(../images/aus.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    clear: both;
    background-attachment: scroll;
    transition: box-shadow 0.3s ease-in-out;
}

.innerbot:hover {
box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
transition: box-shadow 0.3s ease-in-out;
}

