* {
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  border: 0;
  padding: 0;
  color: #fff;
  height: 100%;
}

.bg {
  background-image: url('bg.jpg'); 

  /* Add the blur effect */
  filter: blur(8px);
  -webkit-filter: blur(8px);

  /* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}

main {
  padding: 40px;
  
  border: solid 2px #009DFF;
  border-left: solid 15px #009DFF;
  
  
  margin-top: 1vh;  
  background: #FFFFFF30;

  position: absolute;
  top: 50px;
  left: 50px;
  width: 700px;
  height: 500px;
  
  @media only screen and (max-width: 600px) {
    width: 70%;
    height: 85%;
  }

  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */  
}

main > h1 {  
  text-align: left;
  font-size: 3.5em;
}