@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;
    width: 100%;
    height: 100%;
    display: flex;
    color: white;
}

.container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
}

.container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.me {
    z-index: 10;
    flex-basis: 50%;
    align-self: center;
    text-align: justify;
    margin-left: 10%;
}

.me h1 {
    font-size: 50px;
}

.text {
    font-size: 14px;
    flex-basis: 50%;
    opacity: 0.8;
    align-self: center;
    text-align: justify;
    user-select: none;
    margin-right: 10%;
    margin-left: 20%;
}

.text:hover {
    color: aqua;

}

.text h1 {
    font-size: 30px;
}

.text hr {
    margin: 15px 0px;
    transform: translate(0px, -15px);
}

.text p {
    line-height: 24px;
}

.content {
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.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;
}

