* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.audiowide-regular {
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
}



header {
    width: 100%;
    height: 100px;
    padding-left: 20px;
    background-color: #121212;
    z-index: 1000;
    vertical-align: middle;
    display: flex;
    align-items: center;
}
header h2{
    color: #FFFFFF;
    font-size: 3em;
    
}
header .logo {
    width: 65px;
    height: 65px;
    padding: 10px;
    z-index: 1001;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .logo img {
    width: 60px;
    height: 60px;
    top: 0;
    left: 0;
    z-index: 1002;
}

main {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

main .intro{
    width: 100%;
    height: 80vh;
    background-image: url("../assets/img/css/backg1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 10px solid #FF4500;
    box-shadow: 0px 10px 15px rgba(255, 69, 0, 0.1);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

main .intro .intro-banner{
    width: 50%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border: 1px solid #CCFF00;
    box-shadow: 0px 10px 15px rgba(255, 69, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
    color: #CCFF00;
}

main .intro .progress-bar{
    width: 60%;
    height: 20px;
    background-color: #1E1E1E;
    border-radius: 10px;
    position: relative;
    z-index: 4;
    margin-bottom: 20px;
    margin-top: 20px;
}

main .intro .progress-bar-fill{
    width: 0%;
    height: 20px;
    background: linear-gradient(90deg, #FF4500, #CCFF00);
    border-radius: 10px;
    position: relative;
    z-index: 4;
    animation: loadingAnimation 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

main .about{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    border-bottom: 5px solid #130176;
}
footer{
    width: 100%;
    height: 60px;
    background-color: #1E1E1E;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: 0.8em;
}

@keyframes loadingAnimation {
    0% { width: 0%; }
    30% { width: 40%; }
    60% { width: 70%; }
    85% { width: 85%; }
    100% { 
        width: 100%; 
        box-shadow: 0 0 15px #CCFF00; 
    }
}
@media (max-width: 768px) {
    main {
        flex-direction: column;
    }
    header h2{
        font-size: 2em;
    }
    main .intro .intro-banner{
        width: 100%;
        height: 50vh;
        margin-left: 0.8%;
        margin-right: 0.8%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    h1.audiowide-regular {
        font-size: 1.2em;
    }
    p.audiowide-regular {
        font-size: 0.9em;
    }
    
}
