@charset "UTF-8";
/* CSS Document */


html, body{
  height: 100%;
}
body { 
	background-image: url(../images/penrhos-holding.jpg) ;
	background-position: center center;
	background-repeat:  no-repeat;
	background-attachment: fixed;
	background-size:  cover;
	background-color: #999;
}

* {-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box;    /* Firefox, other Gecko */
box-sizing: border-box;         /* Opera/IE 8+ */
}
div, body{
  margin: 0;
  padding: 0;
}
h1{
	text-transform: uppercase;
    font-weight: 600;
    font-size: 5em;
    text-align: center;
    color: white;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	margin: 20px;
}
a{
	text-decoration: none;
    color: #afafaf;
}
p{
    font-weight: normal;
    font-size: 1em;
    text-align: center;
    color: white;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	margin:10px;
	line-height: 1.2em;
}
.wrapper {
  height: 100%; 
  width: 100%; 
	background-color:rgba(0, 0, 0, 0.5);
}

.wrapper2 {
  min-height: 100%; 
  width: 100%;
	background-color:rgba(60, 60, 59, 0.85);
	display: flex;
    flex-direction: column;
    justify-content: space-around;
	padding:20px;
}

.formtextwrap {
	max-width:600px; 
	height:auto;
	margin:20px auto;
}

.logo{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 640px; 
    max-height: 250px;
	text-align: center;
		
}

.logo img{
	max-width:80%;
	height:auto;
}

.text {
	margin-top:70px;
	color:#fff;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	padding: 10px;
}

#contact{
    display: flex;
    flex-direction: column;
    max-width: 500px;
    min-width: 320px;
    justify-content: space-between;
    background-color: rgba(138, 138, 138, 0.2);
    padding: 40px 40px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
input, textarea{
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 100%;
    margin: 10px 0;
    padding: 8px 10px;
    border: none;
    border-radius: 3px;
}
textarea{
	resize: vertical;
	min-height: 90px;
}
input:focus, textarea:focus{
	outline-color: #3f3b39;
}
input[type="submit"]{
	background-color: rgba(255, 255, 255, 0);
    border: 1px solid #fff;
    color: #fff;
	cursor: pointer;
	transition: all 0.1s linear;
}
input[type="submit"]:hover{
	background-color: rgba(255, 255, 255, 0.2);
}
.result{
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	color: white;
    background-color: rgba(0, 0, 0, 0.21);
    padding: 10px;
    margin: 10px 0px;
	display: none;
}
.social-icons{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;
	width: 100%;
	max-width: 250px;
	text-align: center;
	margin: 20px auto;
}
@media only screen and (max-width: 500px) {
	h1 {
		font-size:3em;
	}
}
@media only screen and (max-height: 550px) {
	input, textarea {
		margin: 5px 0px;
		padding: 5px 6px;
	}
}