*{
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    font-family: "Kanit", sans-serif;
    box-sizing: border-box;
    
}

html, body {
    margin: 0;
    padding: 0;
    background-color: #000;

    -ms-overflow-style: none;
    scrollbar-width: none;
}





/* ------------------------ MAIN CONTENT ------------------ */
#sec1Content {
    background: url('aibackground2.png') center no-repeat fixed;
    background-size: 100% 100%;
    height: calc(100vh);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title {
    color: #fff;
    z-index: 1;
    font-weight: bold;
    font-size: 80px;
    padding: 0 42px;

    
}

.par {
    color: #fff;
    z-index: 3;
    font-weight: 350;
    padding: 0 30px;
}

.tryButton {
    text-shadow: 0px 0px 5px #3b82f6;
    padding: 12px;
    margin: 12px 0 0 0;
    font-weight: 500;
    font-size: 18px;
    transition: all ease 0.2s;
}

.tryButton:hover {
    transform: translateY(-5px);
}

.overlay {
    position: absolute;

    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    z-index: 0;

}

.textGradientDiffusion {
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.material-symbols-rounded {
    overflow: hidden;
}




/* ---------------------------- INFO CONTENT ------------------- */

#sec2Content {
    padding: 80px 50px;
}

.overlay2 {
    position: absolute;

    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    z-index: 1;
}

.headerCenter {
    color: #fff;
    z-index: 2;
    font-weight: 500;
    font-size: 30px;
    
    
    text-align: center;
    
}

.fadeUpAnim {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s cubic-bezier(.94,-0.01,.59,1.01), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fadeUpAnim.visible {
    opacity: 1;
    transform: translateY(0);
}

#questionsContainer {
    margin: 0 20%;
    z-index: 2;
}

.questionMargin {
    margin-top: 60px;
}



@media screen and (max-width: 720px) {
    #questionsContainer {
        margin: 0;
    }

    #logo {
        font-size: 30px;
        font-weight: 700;
    }

    #navBarList {
        gap: 0px;
    }

    .title {
        font-size: 50px;
    }
}