body {
    margin: 0;
}

.wrapper {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    perspective: 10px;
}
/* Parallax Start */
.parallax {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transform-style: preserve-3d;
    z-index: -1;
    width: 101%;
    border-color: aqua;
}
.parallax-background {
    background: white;
    width: 100%;
    height: 100%;
    transform: translateZ(-120px) scale(13);
}
.front-layer, .logocontainer {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}
.front-layer { transform: translateZ(0px) translateY(5px) scale(1); }

.logocontainer {
    transform: translateZ(-55px) scale(1.8) translateY(-70%);
}
.logo {
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
}
/* Spinning */
@keyframes spin {
    from { transform: rotate(0deg) }
    to { transform: rotate(360deg) }
}
.logogear {
    position: absolute;
    left: 13.9%;
    top: 10%;
    width: 8%;
    animation: spin 30s linear infinite;
}

/* Parallax End */

.main {
    padding-top: 120px;
    background: linear-gradient(#000000, #252529);
    font-family: Arial, Helvetica, sans-serif;
    min-height: 800%;
}
.tab {
    margin: auto;
    width: 50%;
    min-width: 250px;
    background-color: #131316;
    padding: 20px 20.5px;
    border-radius: 15px;
    box-shadow: 0 0 10px;
}
.caption {
    font-size: 20px;
    font-weight: bold;
    color: hsl(0, 0%, 100%);
}
.paragraph {
    color: hsl(0, 0%, 90%);
    font-size: 16px;
}

.showcaseimg {
    min-width: 50%;
    max-width: 500px;
    border-radius: 8px;
}

.video {
    max-width: 100%;
}

.messages-input-container {
    background: rgb(36, 36, 38);
    padding: 10px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.messages-input {
    background: none;
    color: white;
    border: none;
    font-size: 16px;
    flex: 1;
    min-width: 0;
    padding: 5px;
}
.messages-button {
    background: none;
    outline: none;
    border: none;
    cursor: pointer;
    width: 40px;
    flex-shrink: 0;
}
.messages-output-container {
    background: rgb(36, 36, 38);
    padding: 10px;
    border-radius: 7px;
    min-height: 200px;
}
.message-container {
    background-color: rgb(24, 25, 28);
    margin: 5px;
    padding: 5px;
    border-radius: 5px;
    color: white;
}
.message-date {
    display: flex;
    justify-content: end;
    margin: 5px;
}
.message-content {
    display: flex;
    justify-content: start;
    margin: 0 5px 5px 5px;
}

/*Language Field*/
.langTab {
    background-color: #131316;
    margin: 0 auto;
    width: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 999px;
    padding: 10px
}

.langSpan {
    padding: 2px;
    border-radius: 999px;
}

.activeLang {
    background: rgb(236, 236, 236);
}

.langImg {
    display: block;
    cursor: pointer;
}

.langImg:hover {
    -webkit-filter: brightness(70%)
}


/*phone settings*/
@media (max-width: 768px) {
    .logocontainer {
        transform: translateZ(-30px) scale(3.3) translateY(30%);
    }
    .logogear {
        left: 13.8%;
        top: 3%;
    }
    .tab {
        width: 80%;
    }
    .showcaseimg {
        max-width: 100%;
    }
}
