/*
* {
    margin: 0;
    padding: 0;
}
*/

.header {
    background: rgba(0,0,100,0.5);
    height: 100vh;
}

/* navbar */
.nav .menu-bar {
    width: 100%;
    height: 8vh;
    text-align: center;
    /*box-shadow: 1px 2px 4px grey;*/
    background: rgba(2,2,2,0.2);
}

.menu-bar li {
    list-style-type: none;
    display: inline-block;
    padding: 22px;
    margin: 0px; 20px;
    font-size: 15px;
    font-family: sans-serif;
    cursor: pointer;
    font-weight: bold;
}

.menu-bar li:hover {
    background: #007bff;
    height: 5px;
}

li a {
    text-decoration: none;
    color: #fff;
}

/*---------vide------------*/
.video-background {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; 
}

@media (min-aspect-ratio:16/9) {
    .video-background {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio:16/9) {
    .video-background {
        width: auto;
        height: 100%;
    }
}

.welcome-msg {
    position: relative;
    text-align: center;
    font-family: cursive;
    color: #fff;
    top: 150px;
}

.welcome-msg h1 {
    font-size: 80px;
    font-weight: 100;
    letter-spacing: 5px;
    margin-bottom: 30px;
}

.btn {
    font-size: 18px;
    color: #fff;
    margin: 5px;
    padding: 7px 22px;
    text-decoration: none;
    border: 1px solid coral;
    border-radius: 25px;
}

.btn-r {
    background: coral;
}

.btn-d:hover {
    background: coral;
    transition: 0.5s;
}

/* footer */
footer {
  color: #666;
  background: #222;
  padding: 17px 0 18px 0;
  border-top: 1px solid #000;
  width: 100%;
  bottom: 0px;
  position: absolute;
  text-align: center;
}

/* responsive footer fix by Aalaap Ghag 
This is where the magic happens */
@media (max-width: 767px) {

  footer  {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/*
.container {
  max-width: 940px;
}
*/

/*-----------------contact------------*/


