* {
	margin: 0;
	padding: 0;
}
html {
    width:100%;
    height:100%;
}
body {
    width:100%;
    height:100%;
    margin:0px;
    position:relative;
    background-image: url('../images/bg.png');
}
div.shadow {
    position:absolute;
    max-width:50%;
    max-height:50%;
    top:50%;
    left:50%;
    overflow:visible;
}
img.logo {
    position:relative;
    max-width:100%;
    max-height:100%;
    margin-top:-50%;
    margin-left:-50%;
}
span {
    font-family: 'Open Sans', sans-serif;
    font-size: 2em;
    text-align: center;
    display: block;
}
a {
    text-decoration: none;
    color: green;
}

.wrapper {
    max-width: 1086px;
    width: 100%;
    position: fixed;
    margin: auto;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}
.row, .wrapper span {
    width: 96%;
    padding: 2%;
}
.column1, .column2 {
    float: left;
}

.column1 {
    width: 22%;
    padding-right: 1%;
}

.column2 {
    width: 76%;
    padding-left: 1%;
}

.column1 img {
    width: 100%;
}

.column2 p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3em;
}

@media screen and (max-width: 1000px) {
  .column1 {
    width: 96%;
  }
  .column2 {
    width: 96%;
  }
  .column1 img {
    width: 30%;
    margin: auto;
  }
  .column2 p {
    font-size: 1em;
  }
}