:root{
    --main-bg-color: rgb(58, 58, 58);
    --panel-side-bg-color: rgb(43, 43, 43);
    --panel-main-bg-color: rgb(43, 43, 43);
    --panel-main-pair-bg-color: rgb(37, 37, 37);
    --download-bg : white;

    --text-color: white;
    --alt-color : #00eeff;
    --alt-color-2 : #f5c422;
    --gd-color:#69ff4b87;
    --gp-color:#ffb51687;
    --market-color:#d54bff87;
    --art-color:#4bb7ff87;

    --font :'Roboto', Helvetica, Arial, sans-serif;
}


body{
    background-color: var(--main-bg-color);
    margin:0;
    width:100vw;
    min-height:100vh; 
    overflow-anchor: auto ;
    overflow-x: hidden;
}

html{
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


.Separator{
    /* height: 100vh; */
    width: 100vw; 
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
}

.SeparatorItem1{

    width: 20vw;
    height: 100vh;
    background-color : var(--panel-side-bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
   

}
.SeparatorItem2{
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
    
    
}
.LeftTitle{
    color: var(--text-color);
    font-family: var(--font);
    transition: 0.2s;
    font-size: 5vh;
    text-align: center;
}
.Active{
    color: var(--alt-color ) !important;
}

.LeftTitle:hover{
    color: var(--alt-color-2 );
    cursor: pointer;
    transition: 0.2s;
}

.ContentDiv{
    width: 80vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
#Welcome{
    justify-content: center;
    align-items: center; 
    background-image: url("../images/asterix-obelix.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#Welcome>h1{
    width: 50vw;
    font-size: 10vh;
    line-height: 0%;
    color: var(--text-color);
    font-family: var(--font);
}
#Welcome>h2{
    width: 50vw;
    font-size: 2vh;
    line-height: 0%;
    color: var(--text-color);
    font-family: var(--font);
}



.ContentPair{
    background-color: var(--panel-main-pair-bg-color);
    box-shadow: 0px 2px 5px black;
}

#About{
    
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#About>p{

    color: var(--text-color);
    /* margin-right: 18vw; */
    margin-bottom: 0;
    width: 75vw;
    font-family: var(--font);
    font-size: 5vh;
    font-weight: bold;
    text-align: justify;
    margin-top: 20vh;
}

#About>.links{
    margin-right: 18vw;
    width: 50vw;
    height: 30vh;
    margin-top: 10vh;
    display: flex;
    justify-content: space-evenly;

}

#About>.links>a>img{
    width: 20vw;
}

#About>p>alt1{
    color: var(--alt-color );
}
#About>p>alt2{
    color: var(--alt-color-2 );
}


.DownloadSubDiv{
    width: 70vw;
    height: 100vh;
    /* background-color: white; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
}

.DownloadSubDiv>a{
    color : var(--text-color);
    text-decoration: none;
    font-family: var(--font);
    font-size: 8vh;
    background-color: var(--panel-main-bg-color);
    border-color: var(--download-bg);
    border-width: 1wh;
    border-style: solid;
    border-radius: 10px;
    padding: 1vw;
    transition: 0.5s;
}

.DownloadSubDiv>a:hover{
    color : var(--alt-color);
}

#Team{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: auto !important;
}

.TeamSub{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items:space-evenly;
    width: 80vw;
    flex-wrap: wrap;
    height: auto !important;
}

.TeamElement{
    padding: 1vw;
    margin : 10px;
    min-width: 15vw;
    max-width: 20vw;
    min-height: 15vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.24);
    border-style: solid;
    border-color: white;
    border-radius: 10px;
    
}

.TeamGD{
    background-color: var(--gd-color); 
}

.TeamGP{
    background-color: var(--gp-color); 
}

.TeamMarket{
    background-color: var(--market-color); 
}

.TeamElement>h1{
    color: white;
    font-family: var(--font);
    font-size: 3vh;
}
.TeamElement>h2{
    color: white;
    font-family: var(--font);
    font-size: 2vh;
    text-align:center;
    
}
.ProjectSubDiv{
    width: 55vw;
    text-align: center;
    /* height: 100%; */
}

#Project {

    height : auto !important
}

.ProjectSubDiv>p{
    color:var(--text-color);
    font-family: var(--font);
    font-size: 3vh;
    text-align:justify;
}

.ProjectSubDiv>p>alt1{
    color: var(--alt-color );
}
.ProjectSubDiv>p>alt2{
    color: var(--alt-color-2 );
}
#Footage{
    min-height: 100vh !important;
    height: auto !important;
}
#Footage>p{
    color:var(--text-color);
    font-family: var(--font);
    font-size: 3vh;
    text-align:justify;
}

.FootageSubDiv{
 width: 70vw;
 min-height: 90vh;
 display: flex;
 flex-wrap: wrap;
 justify-content: space-evenly;
 align-items: center;
 align-content: center;
 

}

.FootageElement{
 
}
.FootageSubDiv>iframe{
    max-width: 30%;
    margin-top: 1vh;
}

.big{
    max-width: 50%;
    margin-top: 1vh;
}
.small{
    max-width: 25%;
    margin-top: 1vh;
}