@font-face {
	src: url(/fonts/tesla.ttf);
	font-family: tesla;
}

@font-face {
	src: url(/bv/fonts/Quicksand-Regular.ttf);
	font-family: qr;
}

*{
    padding: 0;
    margin: 0;
}

body::-webkit-scrollbar {
  display: none;
}

body {
    background-color: #222222;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    
    overflow-x: hidden;
    
}


#header{
    position: sticky;
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: black;
    
    z-index: 2;
    
    -webkit-transition: top 0.2s ease-in-out;
			 -moz-transition: top 0.2s ease-in-out;
				-ms-transition: top 0.2s ease-in-out;
				 -o-transition: top 0.2s ease-in-out;
						transition: top 0.2s ease-in-out;
}

#logoContainer1{
    margin-top: 10px;
    margin-bottom: auto;
    margin-left: 30px;
    text-align: center;
    z-index: 5;
    width: 100px;
    height: auto;
    transition: transform .2s;
    display: none;
}

#logoBackground{
    
    margin-right: auto;
    z-index: 4;
    
    top: -61px;
    left: -6px;
    
    background-color: black;
    width: 175px;
    height: 175px;
    
    position: absolute;
    
    border-radius: 50%;
    
    border-style: solid;
    border-width: 5px;
}

#logoContainer2{
    margin-top: 10px;
    margin-bottom: auto;
    margin-left: 30px;
    text-align: center;
    z-index: 5;
    width: 100px;
    height: auto;
    transition: transform .2s;
    display: none;
}

#logoContainer2:hover{
    transform: rotate(-360deg);
}


.j{
    animation: j 10s ease infinite;
}
 
    
.s{
    animation: s 10s ease infinite;
}

.p{
    animation: p 10s ease infinite;
}

@keyFrames j{
        0% {fill: #4285F4;}
        25% {fill: #DB4437;}
        50% {fill: #F4B400;}
        75% {fill: #0F9D58;}
        100%{fill: #4285F4;}
}

@keyFrames s{
        0% {fill: #DB4437;}
        25% {fill: #F4B400;}
        50% {fill: #0F9D58;}
        75% {fill: #4285F4;}
        100%{fill: #DB4437;}
    
}
   
@keyFrames p{
        0% {fill: #F4B400;}
        25% {fill: #0F9D58;}
        50% {fill: #4285F4;}
        75% {fill: #DB4437;}
        100%{fill: #F4B400;}
}







#backHome a{
    text-decoration: none;
    color: white;
}

#demoHomeLink{
    
    margin: auto 50px auto auto;
    
    text-align: center;
    
    
    position: relative;
    color: black;
    background-color: #4285F4;
    padding: 6px;
    font-size: 20px;
    font-family: tesla;
    
    -webkit-transition: all 0.2s ease-in-out;
			 -moz-transition: all 0.2s ease-in-out;
				-ms-transition: all 0.2s ease-in-out;
				 -o-transition: all 0.2s ease-in-out;
						transition: all 0.2s ease-in-out;
						
	border-style: solid;
    border-width: 5px;
    border-color: black;
}

#demoText{
    margin-top: auto;
    margin-bottom: auto;
}

#demoHomeLink:hover{
    transform: scale(1.02);
    box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2), 0 6px 20px 0 rgba(255, 255, 255, 0.19);
}

#demoHomeLink{
    text-decoration: none;
    color: white;

}

.footer{
    font-family: tesla;
    font-size: 15px;
    color: white;
    background-color: black;
    text-align: center;
    padding: 10px;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    
    margin-top: auto;
    margin-bottom: 0;
    
}


.demoMatrix{
    margin-top: 10px;
    margin-bottom: 200px;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: auto;
    
    flex-wrap: wrap;
}





.red{
    background-color: #DB4437;
}

.blue{
    background-color: #4285F4;
}

.green{
    background-color: #0F9D58;
}

.yellow{
    background-color: #F4B400;
}


.demoBox{
    font-family: tesla;
    font-weight: bold;
    font-size: 20px;
    color: white;
    
    height: 200px;
    width: 200px;
    border-radius: 50%;
    
    margin: 20px;
    
    border-style: solid;
    border-width: 10px;
    border-color: black;
    
    
    display: flex;
    justify-content: center;
    
    
    
    text-align: center;
    
    transition: all .5s ease;
}

.demoBox:hover{
    transform: scale(1.15);
    box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2), 0 6px 20px 0 rgba(255, 255, 255, 0.19);
}

.demosLink{
    text-decoration: none;
}

.demoBox a{
    text-decoration: none;
    color: black;
}

.textParent{
    padding: 20px;
    margin-top: auto;
    margin-bottom: auto;
}





/*ANIMATIONS*/
.hidden{
    opacity: 0;
    transform: scale(0.2);
	-webkit-transition: all 0.5s ease;
			-moz-transition: all 0.5s ease;
			-ms-transition: all 0.5s ease;
				-o-transition: all 0.5s ease;
					transition: all 0.5s ease;

}
.visible{
    opacity: 1.0;
    transform: none;
    -webkit-transition: all 0.5s ease;
			-moz-transition: all 0.5s ease;
			-ms-transition: all 0.5s ease;
				-o-transition: all 0.5s ease;
					transition: all 0.5s ease;
    
}

.rotateAnimation{
    transition: all .1s ease-in-out;
}

.rotateAnimation:hover{
    transform: rotate(-360deg);
}



.message{
    display: flex;
    font-family: tesla;
    font-size: 300px;
    line-height: 300px;
    color: white;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
}

.separator{
    font-family: tesla;
    text-align: center;
    color: white;
    width: 100%;
    font-size: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
}


@media (max-width: 1243px){
   
}