/* 
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: 'Muli', sans-serif;
  }
 */


.board3 {
  background-color: #8ca89e;
  color: #333;
  font-size: 14px;
  line-height: 20px;
  font-family: 'Muli', sans-serif;
  font-weight: 100;
  height: 1000px;    
}
.textforboard3 {
  margin-top: 236px;
  margin-bottom: 10px;
  color: white;
  font-size: 38px;
  line-height: 44px;
  text-align: center;
  font-weight:100;
}
h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
}
h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}
h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}
h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
}
p {
  margin-bottom: 5px;
}
/* 
.button {
  display: block;
  width: 150px;
  height: 60px;
  margin-right: auto;
  margin-left: auto;
  padding: 4px 15px;
  float: none;
  background-color: #8c8c8c;
  color: white;
  font-size: 20px;
  line-height: 53px;
  text-align: center;
  text-decoration: none;
}
 */

button {
  display: block;
  outline:0;
  border:none;
  width: 150px;
  /* height: 60px; */
  margin-right: auto;
  margin-left: auto;
  padding: 4px 15px;
  float: none;
  background-color: #8c8c8c;
  color: white;
  font-size: 20px;
  line-height: 53px;
  text-align: center;
  text-decoration: none;
}

button:hover {
  background-color:#DFDFDF;		

	
}

.md-close{
font-size:20px;
background-color: #8c8c8c;
margin-top:30px;
}


.imac {
  display: block;
  width: 400px;
  margin-right: auto;
  margin-left: auto;
}
.picbtn {
  margin-top: 123px;
}
.mbp3 {
  display: block;
  height: 400px;
  margin-right: auto;
  margin-left: auto;
  float: none;
  text-align: left;
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
}
@media (max-width: 479px) {
}






/* test */

/* 
.dialog,
.dialog__overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
 
.dialog {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
 
.dialog__overlay {
    position: absolute;
    z-index: 1;
    background: rgba(55, 58, 71, 0.9);
    opacity: 0;
    transition: opacity 0.3s;
}
 
.dialog--open .dialog__overlay {
    opacity: 1;
    pointer-events: auto;
}
 
.dialog__content {
    width: 50%;
    max-width: 560px;
    min-width: 290px;
    background: #fff;
    padding: 4em;
    text-align: center;
    position: relative;
    z-index: 5;
    opacity: 0;
}
 
.dialog--open .dialog__content {
    pointer-events: auto;
}
 
/* Content */
.dialog h2 {
    margin: 0;
    font-weight: 400;
    font-size: 2em;
    padding: 0 0 2em;
    margin: 0;
}

.dialog.dialog--open .dialog__content,
.dialog.dialog--close .dialog__content {
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}
 
.dialog.dialog--open .dialog__content {
    animation-name: anim-open;
}
 
.dialog.dialog--close .dialog__content {
    animation-name: anim-close;
}
 
@keyframes anim-open {
    0% { opacity: 0; transform: scale3d(1.1, 1.1, 1); }
    100% { opacity: 1; transform: scale3d(1, 1, 1); }
}
 
@keyframes anim-close {
    0% { opacity: 1; }
    100% { opacity: 0; transform: scale3d(0.9, 0.9, 1); }
}
 */
 
 
<div class="md-modal md-effect-1" id="modal-1">
    <div class="md-content">
        <h3>Modal Dialog</h3>
        <div>
            <p>This is a modal window. You can do the following things with it:</p>
            <ul>
                <li><strong>Read:</strong> Modal windows will probably tell you something important so dont forget to read what it says.</li>
                <li><strong>Look:</strong> modal windows enjoy a certain kind of attention; just look at it and appreciate its presence.</li>
                <li><strong>Close:</strong> click on the button below to close the modal.</li>
            </ul>
            <button class="md-close">Close me!</button>
        </div>
    </div>
</div>
 
...
 
<div class="md-overlay"></div>

.md-perspective,
.md-perspective body {
    height: 100%;
    overflow: hidden;
}
 
.md-perspective body  {
    background: #222;
    perspective: 600px;
}
 
.container {
    background: #e74c3c;
    min-height: 100%;
}

/* Effect 5: newspaper */
.md-show.md-effect-5 ~ .md-overlay {
    background: rgba(0,127,108,0.8);
}
 
.md-effect-5 .md-content {
    transform: scale(0) rotate(720deg);
    opacity: 0;
    transition: all 0.5s;
}
 
.md-show.md-effect-5 .md-content {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}



