﻿body {
    background-color: #444;
    background: url('../images/pinlayer2.png'),url('../images/pinlayer1.png'),url('../images/back.png');
}

.vertical-offset-100 {
    padding-top: 100px;
}

.container {
    height: 80%;
    width: 80%;
    position: absolute;
    margin: -150px 0 0 -150px;
    left: 50%;
    top: 50%;
}

.vertical-center {
    min-height: 100%;
    min-height: 100vh;
    /* Make it a flex container */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /* Align the bootstrap's container vertically */
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* In legacy web browsers such as Firefox 9
     we need to specify the width of the flex container */
    width: 100%;
    /* Also 'margin: 0 auto' doesn't have any effect on flex items in such web browsers
     hence the bootstrap's container won't be aligned to the center anymore.
  
     Therefore, we should use the following declarations to get it centered again */
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
