
header.home-hero {
    position: relative;
    height: 58vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}
header.home-hero .container {
    position: relative;
    z-index: 2;
    height: 70%;
}

header.home-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.button{
    padding: 5px;
}

@media (max-width: 575.98px) {
    header.home-hero  {
        height: 10vh;
   }
}



body{
    background-color: #E2e4e4;
    margin: 5px;
    padding: 5px;
    font-family: 'Kalam', cursive;
}



h1{
    font-family: "Pacifico";
}

#btn{
    text-align: center;
    align-items: center;
    /* width: 80px; */
}

.container {
    max-width: 1000px;
    /* margin-left: 100px; */
    display: flex;
    flex-wrap: wrap;

    justify-content: space-evenly;
 }
  
.card {
    position: relative;
    margin: 20px 0;
    width: 300px;
    height: 400px;
    background: #fff;
    transform-style: preserve-3d;
    transform: perspective(2000px);
    transition: 1s;
    box-shadow: inset 100px 0 50px rgba(0, 0, 0, 0.5);
}
  
.card:hover {
    z-index: 1111;
    transform: perspective(2000px) rotate(-10deg);
    box-shadow: inset 20px 0 50px rgba(0, 0, 0, 0.5);
}
  
.card .img-container {
    position: relative;
    width: 100%;
    height: 100%;
    /* border: 1px solid #000; */
    box-sizing: border-box;
    transform-origin: left;
    z-index: 1;
    transition: 1s;
}
  
.card .img-container img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
  
.card:hover .img-container {
    transform: rotateY(-135deg);
}
  
.card .card-details {
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    padding: 20px;
    color: #000;
}
  
.card .card-details h2 {
    margin: 0;
    padding: 0.5em 0;
    text-transform: uppercase;
    font-size: 2em;
    color: #1877F2;
}

.card .card-details .h2-face {
    margin: 0;
    padding: 0.5em 0;
    text-transform: uppercase;
    font-size: 2em;
    color: #1877F2;
    font-family: 'Kalam', cursive;
}

.card .card-details .h2-google {
    margin: 0;
    padding: 0.5em 0;
    text-transform: uppercase;
    font-size: 2em;
    color: #EA4335;
}

.card .card-details .h2-insta {
    margin: 0;
    padding: 0.5em 0;
    text-transform: uppercase;
    font-size: 2em;
    color: #B633AA;
}

.card .card-details .h2-graphic {
    margin: 0;
    padding: 0.5em 0;
    text-transform: uppercase;
    font-size: 2em;
    color: #ED7B1B;
}

.card .card-details .h2-web {
    margin: 0;
    padding: 0.5em 0;
    text-transform: uppercase;
    font-size: 2em;
    color: #D00033;
}
  
.card .card-details p {
    margin: 0;
    padding: 0;
    line-height: 25px;
    font-size: 1.1em;
}

#id.container {
    perspective: 320px;
  }
  
  .btn1 {
    display: block;
    margin: 40px 0;
    width: 240px;
    height: 80px;
    border: none;
    background-color: #E2e4e4;
    box-shadow: -10px -10px 15px #00a8ff ;
    color: #000;
    font-size: 18px;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
    transition: 0.3s linear;
    font-family: 'Kaushan Script', cursive;
    text-decoration: none;
    transform: rotateX(-15deg);
  }

  .btn2 {
    display: block;
    margin: 40px 0;
    width: 240px;
    height: 80px;
    border: none;
    background-color: #E2e4e4;
    box-shadow: 0 15px 15px #00a8ff ;
    color: #000;
    font-size: 18px;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
    transition: 0.3s linear;
    font-family: 'Kaushan Script', cursive;
    text-decoration: none;
  }

  a{
    text-decoration: none;
  }
  
  .btn1:hover {
    transform: rotateX(15deg);
    box-shadow: 0 15px 15px #00a8ff;
  }
  
  .btn2:hover {
    transform: rotateX(-15deg);
    box-shadow: 0 -15px 15px #00a8ff;
  }

