@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.showcase {
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    color: white;
}

.container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(22, 18, 34);
}

.container video {
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    object-fit: fill;
    opacity: 0.8;
    z-index: 1;
}

.projects {
    position: absolute;
    top: 60%;
    width: 100%;
    object-fit: cover;
    color: #fff;
    opacity: 0.8;
    z-index: 1;
}

.projects h1 {
    position: absolute;
    width: 100%;
    padding: 8px;
    font-weight: 400;
    text-align: center;
    font-size: 34px;
    font-family: sans-serif;
    background-color: rgb(10, 8, 16);
    opacity: 0.9;
}


.menu {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    margin-top: 20px;
    z-index: 10;
}

.menu ul li {
    list-style: none;
    display: inline-block;
    line-height: 44px;
    margin: 0 10px;
}

.menu ul li a {
    color: #bf8a6b;
    text-decoration: none;
    box-shadow: inset 0 0 0 0 #bf8a6b;
    transition: color .5s ease-in-out, box-shadow .5s ease-in-out;
    font-size: 22px;
    font-weight: bold;
    padding: 6px 20px;
}

.menu .active,
.menu ul li a:hover {
    color: #fff;
    box-shadow: inset 150px 0 0 0 #bf8a6b;
    border-radius: 2px;
}

.gallery {
    position: absolute;
    width: 95%;
    display: inline-block;
    align-self: center;
    margin-top: 27.5%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    z-index: 1;
}

.gallery .header {
    color: rgb(42, 106, 203);
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.6);
}

.gallery a{
    text-decoration: none;
}

.gallery p {
    font-size: 13px;
    font-weight: bold;
    z-index: 2;
}

.gallery h3 {
    font-size: 100%;
    font-weight: bold;
}

.gallery .card1 {
    width: 17.5%;
    height: 200px;
    display: inline-block;
    background-image: url(PursuitOfTheTruth.png);
    background-position: center;
    background-size: cover;
    border: 1px solid white;
    border-radius: 5px;
    margin: 75px 50px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: ease 0.5s;
}

.card1:hover {
    border-color: rgb(42, 106, 203);
    transform: translateY(-10px);
}

.gallery .card2 {
    width: 17.5%;
    height: 200px;
    display: inline-block;
    background-image: url(PanteonDemoProject.png);
    background-position: center;
    background-size: cover;
    border: 1px solid white;
    border-radius: 5px;
    margin: 75px 50px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: ease 0.5s;
}

.card2:hover {
    border-color: rgb(42, 106, 203);
    transform: translateY(-10px);
}

.gallery .card3 {
    width: 17.5%;
    height: 200px;
    display: inline-block;
    background-image: url(TheFateOfMaze.png);
    background-position: center;
    background-size: cover;
    border: 1px solid white;
    border-radius: 5px;
    margin: 75px 50px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: ease 0.5s;
}

.card3:hover {
    border-color: rgb(42, 106, 203);
    transform: translateY(-10px);
}

.gallery .card4 {
    width: 17.5%;
    height: 200px;
    display: inline-block;
    background-image: url(Imhotep.png);
    background-position: center;
    background-size: cover;
    border: 1px solid white;
    border-radius: 5px;
    margin: 75px 50px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: ease 0.5s;
}

.card4:hover {
    border-color: rgb(42, 106, 203);
    transform: translateY(-10px);
}