@media only screen and (orientation:portrait){
    .Separator {
      display: none !important;
      transition: 1s;
      opacity: 0;
    }
    .Portrait {
        transition: 1s;
        opacity: 1;
    }
  }
@media only screen and (orientation:landscape){
    .Separator {
        transition: 1s;
        opacity: 1;
    }
    .Portrait {
        display: none  !important;
        transition: 1s;
        opacity: 0;
    }
}



.Portrait{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 5vw !important;
    font: var(--font);
    color: var(--text-color);
    transition: 1s;
}
.Portrait>img{
    animation-duration: 5s;
    animation-name: rotatephone;
    animation-iteration-count: infinite;
}

@keyframes rotatephone {
    0%   { transform: rotate(-0deg); }
    25%  { transform: rotate(-90deg); } 
    40%  { transform: rotate(-90deg); }
    60% { transform: rotate(-360deg); }
    80% { transform: rotate(-360deg); }
    100% { transform: rotate(-360deg); }
}


: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 : #9118f5;
    --alt-color-2 : #1874f5;
    --gd-color:#69ff4b87;
    --gp-color:#ffb51687;
    --ga-color:#1874f5;
    --market-color:#d54bff87;
    --art-color:#9118f5;

    --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;
}
.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/Twitch_All_Starz.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-image: url("../images/SuperTagBlueTagger.png");
    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;
}

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

.TeamElement{
    padding: 1vw;
    min-width: 20vw;
    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); 
}

.TeamGA{
    background-color: var(--ga-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: 40vh;
}

.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;
}

.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;
}

