:root {
    --bg-1: hsl(167, 100%, 72%);
    --bg-2: hsl(213, 52%, 67%);
    --bg-3: hsl(300, 75%, 70%);

}



body {
    background: linear-gradient(210deg, var(--bg-1), var(--bg-2), var(--bg-3));
    height: 100vh;
    margin: 0;
}

.padding-test {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 80px 0;
    max-width: 1400px;
    margin: auto;
    margin-bottom: 40px;
    background: rgb(158, 142, 142);
    mask-image: linear-gradient(180deg, rgb(0, 0, 0) 70%, transparent 100%);
    border: 1px solid rgb(86, 139, 255);
}

.padding-test-logo {

    padding: 10px 2rem;
    margin-left: 2%;
    background: rgb(90, 139, 230);
    mask-image: linear-gradient(180deg, black 70%, transparent 100%);
    border: 1px solid rgb(255, 86, 86);
}


.padding-test-nav {
    flex: 1;
    display: flex;
    text-decoration: none;
    flex-direction: row-reverse;
    padding: 0 10px;
}


.twitch-live {
    max-width: 1280px;
    margin: auto;
    border: 1px solid rgb(141, 14, 39);
}

.twitch-live iframe {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
}


.landingSection-03 {
    width: 100%;
    background-image: url(../image/Img_animateBg_02.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 960px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landingSection-03 img {
    position: relative;
    min-width: 100vw;
}

.landingSection-03 video {
    position: absolute;
    z-index: -1;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.landingSection-03-text {
    z-index: 1;
    font-size: 3rem;
    position: absolute;
    color: rgb(228, 243, 255);
    text-align: center;
    border: 1px solid red;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    /* Very light transparent white */
    backdrop-filter: blur(10px);
    /* Blurs the video background behind the form */
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    margin: 40px auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #444;
    color: white;
    border-radius: 5px;
}

