/*
Let's create a simple CSS file for our VenJS application. This will include some basic styling for the body, a container for our app, and some default styles for buttons and text. You can modify these styles as needed to fit the design of your application.
*/

@media screen and (min-width: 900px){
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
 h1, h2, h3, h4, h5, h6, p, span, li, a {
            font-family: "IBM Plex Sans", sans-serif;
}

body{
    overflow-x: hidden;
    background-color: rgb(19, 18, 18);
}

.top{
    width: 100%;
    height: 70px;
    display: flex;
    background-color: rgb(22, 21, 21);
    /*border-bottom: 1px solid rgb(17, 16, 16);*/
    align-items: center;
    justify-content: space-between;
    position: fixed;
    color: white;
    z-index: 50;
}

.ajoin{
    width: auto;
    padding: 10px;
    display: flex;
    gap: 2px;
    height: 65px;
    align-items: center;
}

.logo{
    width: 60px;
    height: 65px;
    padding: 5px;
}

.nav{
    width: auto;
    padding: 10px;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav li{
    list-style-type: none;
    color: white;
}

.nav a{
    text-decoration: none;
    color: white;
}
/*Displays only on mobile*/
.nav-icon{
    display: none;
}

.bg-img{
    /*background-image: radial-gradient(circle at 50%, rgb(31, 28, 28), rgb(0, 96, 223), rgb(98, 98, 255));*/
    background-color: rgb(22, 21, 21);
    height: 100vh;
    width: 100%;
    padding: 10px;
    align-items: center;
    display: block;
    color: rgb(252, 250, 250);
}

#header{
    font-size: 40px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    text-align: center;
}

#header1{
    font-size: 40px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    text-align: center;
}

#sub{
    font-size: 15px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    text-align: center;
}

.btn{
    width: 200px;
    height: 50px;
    padding: 10px;
    background-color: rgb(68, 116, 68);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin: 20px auto;
    display: block;
    font-size: 18px;
}

.btn1{
    width: 200px;
    font-size: 18px;
    height: 50px;
    padding: 10px;
    background-color: rgba(45, 45, 250, 0.582);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin: 20px auto;
    display: block;
}

.logo2{
    width: 150px;
    height: auto;
    display: block;
    margin-top:80px;
    margin-left: auto;
    margin-right: auto;
}

.box{
  width:700px;
  height: auto;
  display: block;
  margin:5px auto;
}

.container{
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: transparent;
    color: white;
}

.activity-envi{
    width: 100%;
    min-height: 200px;
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: rgb(241, 235, 235);
    border-radius: 5px;
    padding: 1em;
    margin:20px auto;
}

.code-bg{
    width: 45%;
    min-height: 100px;
    background-color: rgb(24, 23, 23);
    color: rgb(235, 227, 227);
    border-radius: 8px;
    padding: 1em;
    font-size: 15px;
}

.output-bg{
    width: 50%;
    min-height: 100px;
    background-color: rgb(255, 255, 255);
    color:rgb(79, 79, 255);
    border-radius: 8px;
    padding: 1em;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.get-btn{
    width: 300px ;
    height: 40px;
    border: 2px solid rgb(68, 116, 68);
    color: white;
    cursor: pointer;
    border-radius: 10px;
    background-color: transparent;
    display: block;
    margin: 10px auto;
    font-size: 16px;
}

.get-btn:hover{
    background-color:rgb(49, 116, 49) ;
    border: none;
    color: white;
    transition: all ease-in 1s;
}

.img-bg{
    width: 100%;
    height: auto;
    display: block;
}

.img-btn{
    width: 200px;
    height: 40px;
    padding: 10px;
    border-radius: 20px;
    background-color: black;
    color: white;
    display: block;
    border: none;
    cursor: pointer;
    margin: 10px auto;
}

footer{
    width: 100%;
    min-height: 200px;
    background-color: rgb(44, 42, 42);
    padding: 10px;
    display: block;
}

.flex-footer{
    width: 100%;
    display: flex;
    height: auto;
    justify-content: center;
    gap: 5%;
}

.company{
    width:30%;
    height: auto;
    color: white;
    display: block;
    padding: 10px;
}

.framework{
    width:30%;
    height: auto;
    color: white;
    display: block;
    padding: 10px;
}

.frameworkapis{
    width:30%;
    height: auto;
    color: white;
    display: block;
    padding: 10px;
}

.comLogo{
    width: 100px;
    height: auto;
    padding-top: 10px;
}

li{
    list-style-type: none;
}

a{
    color: white;
    text-decoration: none;
    padding: 5px;
}



}




























@media screen and (max-width: 899px){
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
 h1, h2, h3, h4, h5, h6, p, span, li, a {
            font-family: "IBM Plex Sans", sans-serif;
}

body{
    overflow-x: hidden;
    background-color: rgb(19, 18, 18);
}

.top{
    width: 100%;
    height: 70px;
    display: flex;
    background-color: rgb(22, 21, 21);
    /*border-bottom: 1px solid rgb(17, 16, 16);*/
    align-items: center;
    justify-content: space-between;
    position: fixed;
    color: white;
    z-index: 50;
}

.ajoin{
    width: auto;
    padding: 10px;
    display: flex;
    gap: 2px;
    height: 65px;
    align-items: center;
}

.logo{
    width: 60px;
    height: 65px;
    padding: 5px;
}

.nav{
    width: 100%;
    padding: 10px;
    height: 100vh;
    display: none;
    margin-top: 730px;
    background-color: white;
    transition: all linear 1s;
    position: fixed;
    z-index: 100;
}

.nav li{
    list-style-type: none;
    color: rgb(34, 33, 33);
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
}

.sl{
    display: none;
}

.nav a{
    text-decoration: none;
    color: rgb(34, 31, 31);
}
/*Displays only on mobile*/
.nav-icon{
    display: block;
    padding: 20px;
    color: white;
}

.bg-img{
    /*background-image: radial-gradient(circle at 50%, rgb(31, 28, 28), rgb(0, 96, 223), rgb(98, 98, 255));*/
    background-color: rgb(22, 21, 21);
    height: 100vh;
    width: 100%;
    padding: 10px;
    align-items: center;
    display: block;
    color: rgb(252, 250, 250);
}

#header{
    font-size: 30px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    text-align: center;
}

#header1{
    font-size: 30px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    text-align: center;
}

#sub{
    font-size: 15px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    text-align: center;
}

.btn{
    width: 200px;
    height: 50px;
    padding: 10px;
    background-color: rgb(68, 116, 68);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin: 20px auto;
    display: block;
    font-size: 18px;
}

.btn1{
    width: 200px;
    font-size: 18px;
    height: 50px;
    padding: 10px;
    background-color: rgba(45, 45, 250, 0.582);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin: 20px auto;
    display: block;
}

.logo2{
    width: 150px;
    height: auto;
    display: block;
    margin-top:80px;
    margin-left: auto;
    margin-right: auto;
}

.box{
  width:90%;
  height: auto;
  display: block;
  margin:5px auto;
}

.container{
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: transparent;
    color: white;
}

.activity-envi{
    width: 100%;
    min-height: 200px;
    display: block;
    justify-content: center;
    gap: 20px;
    background-color: rgb(241, 235, 235);
    border-radius: 5px;
    padding: 1em;
    margin:20px auto;
}

.code-bg{
    width: 100%;
    min-height: 100px;
    background-color: rgb(24, 23, 23);
    color: rgb(235, 227, 227);
    border-radius: 8px;
    padding: 1em;
    font-size: 15px;
}

.output-bg{
    width: 100%;
    min-height: 400px;
    background-color: rgb(255, 255, 255);
    color:rgb(79, 79, 255);
    border-radius: 8px;
    padding: 1em;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.get-btn{
    width: 300px ;
    height: 40px;
    border: 2px solid rgb(255, 255, 255);
    color: white;
    cursor: pointer;
    border-radius: 10px;
    background-color: transparent;
    display: block;
    margin: 10px auto;
    font-size: 16px;
}

.get-btn:hover{
    background-color:rgb(49, 116, 49) ;
    border: none;
    color: white;
    transition: all ease-in 1s;
}

.img-bg{
    width: 100%;
    height: auto;
    display: block;
}

.img-btn{
    width: 200px;
    height: 40px;
    padding: 10px;
    border-radius: 20px;
    background-color: black;
    color: white;
    display: block;
      border: 1px solid white;
    cursor: pointer;
    margin: 10px auto;
}



footer{
    width: 100%;
    min-height: 200px;
    background-color: rgb(44, 42, 42);
    padding: 10px;
    display: block;
}

.flex-footer{
    width: 100%;
    display: block;
    height: auto;
    justify-content: center;
    gap: 5%;
}

.company{
    width:100%;
    height: 200px;
    color: white;
    display: block;
    padding: 10px;
}

.framework{
    width:100%;
    height: 200px;
    color: white;
    display: block;
    padding: 10px;
}

.frameworkapis{
    width:100%;
    height: 200px;
    color: white;
    display: block;
    padding: 10px;
}

.comLogo{
    width: 100px;
    height: auto;
    padding-top: 10px;
}

li{
    list-style-type: none;
    margin: 5px;
}

a{
    color: white;
    text-decoration: none;
    padding: 5px;
}






}


