@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=menu');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    user-select: none;
}
body {
    background-color: black;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.showcase {
    width: 100%;
    height: 100vh;
    background-color: black;
    color: #fff;
    padding: 100px;
    transition: 1.0s;       
}

.showcase header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    /* border: 1px solid white; */
}
.showcase header div {

    background-color: transparent;
}
.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 0;
}
.tex {
    position: relative;
    transition: 1.0s;
    width: 100%;
    max-width: 700px;
    z-index: 200;
}
.tex h1 {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 1em;
    white-space: nowrap;
}
.tex p {
    font-size: 1.1em;
    margin-top: 20px;
    color: #fff;
    z-index: 1;
}
 .overlay {
    position: absolute;
    bottom:  0;
    left: 0;
    width: 100%;
    height: 100px;
    font-size: 12px;
    background-color: black;
    /* overflow: hidden; */
    color: black;
    padding: 40px;
    border-bottom: 20px black solid;
    overflow-wrap: break-word;
    transition: .5s;
}
.overlay h1 {
    width: 700px;
    padding: 12px;
}
.overlay h1:hover {
    background-image: linear-gradient(90deg, rgba(85, 85, 85, 1), rgba(0, 0, 0, 1));
    border: 3px white dotted;
}
.overlay h1 span {
    color: white;
}
.overlay:hover {
    height: 90%;
    color: white;
    background-color: black;
    transition: 1s;
    z-index: 2000;
    border-top: 5px gray solid;
}
.info {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
    font-size: 1.3em;
    color: yellow;
    overflow-wrap: break-word;
}
.info li:hover {
    /* background-color: transparent; */
    border: 1px white dotted;
}
.info span {
    display: block;
    margin-left: 60px;
    font-size: 1.1em;
    color: white;
}
@media (max-width: 842px) {
    .showcase,
    .showcase header {
        padding-left: 40px;
        transition: 1.0s;
    }
    .tex h1 {
        font-size: 2em;
    }
    .tex p {
        font-size: 0.8em;
    }
}