/* Pen-specific styles */
* {
  box-sizing: border-box;
}
body {
    font-size: 1rem;
    font-family: Open Sans, sans-serif;
    line-height: 200%;
    margin: 0;
}

section {
  color: #fff;
  text-align: center;
}

div {
  height: 100%;
}

img.logo {
    max-width: 100%;
}

article {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 20px;
}

h1 {
  font-size: 1.75rem;
  margin: 0 0 0.75rem 0;
}

a {
    color: white;
    text-decoration: none;
}

a:hover, a:focus {
    border-bottom: 1px dotted #fff;
}

/* Pattern styles */
.container {
  display: table;
  width: 100%;
}

.left-half {
    background-color: #d6eeee;
    position: absolute;
    left: 0px;
    width: 50%;
    background: linear-gradient(to left, #d6eeee, #d4d7ec 100%);
	background-image: url(img/bg.png),linear-gradient(to left, #d6eeee, #d4d7ec 100%);
}

.right-half {
  background-color: #383872;
  position: absolute;
  right: 0px;
  width: 50%;
  background-image: url(img/bg2.png);
  background-size: cover;
  background-position: 50% 50%;
}