*{
    margin: 0;
    padding: 0;
    font-family:"Neuton", serif;
    box-sizing: border-box;
}
body {
    background-color: #101010;
    color: rgb(255, 255, 255);
}

.container{
    /* Fixes the mobile empty space */
    overflow-x: hidden;
}
/*--Orientation Prompt--*/
.prompt{
    
    position: absolute;
    display: block;
    height: 100vh;
    width: 100vw;
    margin: auto;
    padding-top: 10%;
    text-align: center;
    
    background-color:#101010 ;
}
.prompt p{
    font-size: 100px;
}
.prompt i{
    margin-top: 10%;
    scale: 10;
}
.row{
    background-color: #101010;
    display: flex;
    justify-content:space-between;
    

    width: 100%;
}

.row-btn{
    padding: 10px 0;
    background-color: #101010;
    border-radius: 10px;
    display: flex;
    justify-content:left;
    flex-wrap: wrap;
}

/* Scrollbar styles */
.content{
    height: 150px;
    overflow-y: scroll;
}
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    }
    
    ::-webkit-scrollbar-track {
    border: 1px solid rgb(50, 80, 220);
    border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb {
    background: rgb(50, 80, 220);  
    border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
    background: rgb(30, 68, 235);  
    }
/*--Text--*/
.text{
    flex-basis: 85%;
    width: 100%;
}
.text h1{
    color: #aaa;
    display: none;
    font-size: 22px;
    font-weight: 700;
    flex-basis: 30%;
}
.text h3{
    font-size: 26px;
    font-weight: 500;
    transition: 0.5s;
}
.text p{
    font-size: 22px;
    font-weight: 200;
    transition: 0.5s;
}
/*--Buttons--*/
.btn{
    display: block;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    border-radius: 30px;
    padding: 13px 23px;
    border: 2.5px solid #f7f7f7;
    transition: box-shadow 0.2s ease 0s, -ms-transform 0.1s ease 0s, -webkit-transform 0.1s ease 0s, transform 0.1s ease 0s;
    background: #777;
    color: #222222;
    height: 65px;
    align-self: center;
    transition: background 0.25s;

    margin-left: 25px;
    margin-right: 25px;
}
.btn:hover {
    border-color: #000000;
    background: #f7f7f7;
}
#lang-bar{
    margin-top: 20px;
    align-self: center;
}
.lang-btn{
    display: inline-block;
    align-self: center;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
    padding: 13px 16px;
    height: 10px;
    margin: 0 20px;
}
.lang-img{
    position: absolute;
    border-radius: 10px;
    width: 50px;
    translate: -25px -25px;
    outline: auto;
}

#application-canvas{
    min-height:70vh;
    max-height:70vh;

    min-width: 100vw;
    max-width: 100vw;
}

/*--Responsive--*/
@media only screen and (max-width: 1000px){
    #application-canvas{
        min-height:60vh;
        max-height:60vh;
    
        min-width: 100vw;
        max-width: 100vw;
    }
    .lang-img{
        position: absolute;
        border-radius: 7.5px;
        width: 50px;
        translate: -25px -25px;
        outline: auto;
    }

}

@media screen and (orientation:portrait)
{
   .prompt{
    display: block;
   }

}

@media screen and (orientation:landscape)
{
   .prompt{
    display: none;
   }
}