html, body {
  height: 100%;
}  
.card {
        /*
        color:white;
        position: relative;
        width: 500px;
        height: auto;
        opacity: 0.9;        
        top: 50px;
        margin: 0 auto; 
        float: none; 
        margin-bottom: 10px; 
        */
        position: relative;  
        width: 800px;
        height: 300px;
        top: 150px;
        left: 200px;
        opacity: 0.7;
        background-color: white;
        border-style: outset;
        border-color: blue;
        border-width: 3px;
}
        

body{
   /*background-image: url("pic2.jpg");*/
     /* The image used */
        
        background-image: url("backgroundimage.jpg");
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
}
.verticalLine {
   
    border-left: 4px solid blue;
    height: 250px;
    margin: 100px 50px;
}
.box{
    /*font-family: "Times New Roman", Times, serif;*/
    font-family: "Arial", Times, serif;
    font-size: 20px;
    width: 600px;
    height: 200px;
    position: relative;
    left:10px;
}
h1, h2, h3, h4, h5, h6 {
    margin : 0 0 15px;
    color  : #2b2b3d;
    }

h1 {
    font-size   : 26px;
    line-height : 1.8em;
    font-weight : 700;
    }

h2 {
    font-size   : 18px;
    line-height : 1.8em;
    font-weight : 700;
    }

h3 {
    font-size   : 16px;
    line-height : 1.8em;
    font-weight : 500;
    }

h4 {
    font-size   : 15px;
    line-height : 1.8em;
    font-weight : 500;
    }

h5 {
    font-size   : 15px;
    line-height : 1.5em;
    font-weight : 500;
    }

h6 {
    font-size   : 15px;
    line-height : 1.5em;
    }
/*BUTTONS*/    
/* Style buttons */
.btn {
    background-color: DodgerBlue; /* Blue background */
    border: none; /* Remove borders */
    color: white; /* White text */
    padding: 12px 16px; /* Some padding */
    font-size: 16px; /* Set a font size */
    cursor: pointer; /* Mouse pointer on hover */
}

/* Darker background on mouse-over */
.btn:hover {
    background-color: RoyalBlue;
}
/*SOCIAL MEDIA ICONS*/
/* Style all font awesome icons */
.fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
    opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
    background: #3B5998;
    color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
  border-style: outset;
  border-color: white;
  border-width: 0.1px;  
}

.fa-skype {
  background: #00aff0;
  color: white;
}

/*flags*/
/*
@import url(https://fonts.googleapis.com/css?family=Ewert);

*{
  box-sizing:border-box;
}
body{
  background:#eee;
  box-shadow:0 0 .2em #666;
  text-align:center;
}
h1{
  font-family: 'Ewert', cursive;
  font-weight:normal;
  font-size:4em;
  background:#ddd;
  color:#666;

}

/* Here's the good stuff */
/*
.flags{
  font-size:6em;
  line-height:1;
  margin:0;
  
}
.flag{
  box-sizing:content-box;
  display:inline-block;
  position:relative;
  width:1em;
  height:1em;
  margin:0;
  background:#fff;
  border-radius:50%;
  border:solid #eee;
  overflow:hidden;
  box-shadow:0;
  opacity:.5;
  transition: 1s;
}
.flag:hover, .flag.active{
  border-radius:50%;
  box-shadow:0 0 .2em #666;
  opacity:1;
  transform:rotate(-360deg);
}
/* UK */
/*
.en{
  background:rgb(200,10,10);
}

.en:after{

}
.en:before{
  display:block;
  content:"";
  width:0;
  height:0;
  position:absolute;
  left:.5em;
  border-style: solid;
  border-width: 0 0 .5em 1em;
  border-color: transparent  transparent  transparent rgb(10,100,150);
  box-shadow:0 0 0 .125em #fff;
}
.en:after{
  display:block;
  content:"";
  position:absolute;
  background:#fff;
  width:.125em;
  height:.65em;
  left:66%;
  transform:rotate(60deg);
}

/* Wales CY */
/*
.cy:before{
  background:rgb(10,150,10);
  display:block;
  position:absolute;
  bottom:0;
  content:"";
  width:1em;
  height:0.5em;
}
.cy:after{
  display:block;
  content:"";
  width:.5em;
  height:0.5em;
  position:absolute;
  top:.25em;
  left:.25em;
  background:rgb(200,10,10);
  border-radius:50% 50% 0 ;
}
/* Francais FR */
/*
.fr:before{
  background:rgb(10,100,150);
  display:block;
  position:absolute;
  bottom:0;
  content:"";
  width:.333em;
  height:1em;
}
.fr:after{
  display:block;
  content:"";
  width:.333em;
  height:1em;
  float:right;
  background:rgb(200,10,10);
}
/* Italiano IT */
/*
.it:before{
  background:rgb(10,150,10);
  display:block;
  position:absolute;
  bottom:0;
  content:"";
  width:.333em;
  height:1em;
}
.it:after{
  display:block;
  content:"";
  width:.333em;
  height:1em;
  float:right;
  background:rgb(200,10,10);
}
/* Deutchland DE */
/*
.de{
  background:rgb(200,10,10);
}
.de:before{
  background:rgb(255,200,0);
  display:block;
  position:absolute;
  bottom:0;
  content:"";
  width:1em;
  height:.333em;
}
.de:after{
  display:block;
  content:"";
  width:1em;
  height:.333em;
  background:rgb(0,0,0);
}

.content{
  overflow:hidden;
  background:#eee;
  width:80%;
  padding:2em;
  margin:0 auto;
}
*/