*{
    margin: 0;
    padding: 0%;
    box-sizing: border-box;

}
::-webkit-scrollbar {
    
    width: 10px;
    
  }
  
  /* Track */
  .dark::-webkit-scrollbar-track {
    background: #1d1e22; 
  }
  .light::-webkit-scrollbar-track {
    background: red; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background:gray; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }
body{
    background-color: #333642;
    height:640px;
    width:1356;
}
.main{
    width:100%;
    height: 100vh;
    display: flex;
    align-items:flex-end;
    flex-direction: column;
    justify-content: space-between;
    
    
}
.compiler{
    width:100%;
    height: 89%;
    display: flex;
    flex-direction: row;
    /* justify-content: space-evenly; */
    
    margin-bottom: 5px;
    scrollbar-color: #888 #1d1e22;
  scrollbar-width: 1px;
}
.editor{
    width: 49%;
    height: 100%;
    margin-left: 0.65%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.htmlcode{
    font-family: consolas,"courier new",monospace;
    background-color: #1d1e22;
    width:100%;
    height: 100%;
    border: none;
    resize: none;
    color: white;
    outline: none;
    padding:5px 5px 5px 10px;
    font-size: 16px;
    line-height: 1.3;
    cursor: auto;
   
}
.textarea:focus{
    border: none;
}
.result{
    margin-left: 0.65%;
    width:49%;
    height: 100%;
}
iframe{
    /* padding:5px 5px 5px 10px; */
    border: none;
    width:100%;
    height: 100%;
    background-color: white;
    padding: 0;
    

}
.navbar{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content:center;
    
}
.run{
    color: white;
    font-size: 16px;
    background-color: #04AA6D;
    cursor: pointer;
    padding: 9px 14px;
    border-radius: 3px;
    border: none;
    text-align: center;
}
.run:hover{
    background-color: #038656;
}
.download{
    background-color:#04AA6D ;
    color:white;
    cursor: pointer;
    border: none;
    padding:9px 14px ;
    font-size: 16px;
    border-radius: 3px;
}
.download:hover{
    background-color: #038656;
}

.fullScreen1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    
}
.fullScreen2 {
    width: 50%;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    
}
.close{
    display: none;
    z-index: 3;
    font-size: 20px;
    background-color:#00000070;
    border: none;
    color:white;
    cursor: pointer;
    
    text-align: center;
    padding: 0;
    margin: 0;   
    width: 25px;
    height: 25px;
    
    
}
.close:hover{
    transform: scale(1.05);
    opacity: 0.6;
    background-color: #d6d5d5;
    color: black;
    
}
.dm{
    display: none;
}
.navchild{
  width: 95%;
  display:flex;
  flex-direction: row;
  justify-content:space-between;
  align-items: center;
}
.navchild2{
  width:53.5%;
  display:flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  
}
.navchild3{
  width:25%;
  display:flex;
  justify-content:space-between;
}
.main-nav{
    display:flex;
    flex-direction: row;
    width:38%;
    justify-content: space-between;
}
img{
    cursor: pointer;
}
.csscode{
    width:0px;
    height: 0px;
    font-family: consolas,"courier new",monospace;
    background-color: #1d1e22;
    
    border: none;
    resize: none;
    color: white;
    outline: none;
    
    font-size: 16px;
    line-height: 1.3;
    cursor: auto;
}
.jscode{
    width:0px;
    height: 0px;
    font-family: consolas,"courier new",monospace;
    background-color: #1d1e22;
    
    border: none;
    resize: none;
    color: white;
    outline: none;
    
    font-size: 16px;
    line-height: 1.3;
    cursor: auto;
}
.checkwrap{
    display: flex;
   justify-content: center;
   align-items: center;
}

  .check {
    display: inline-block;
    height: 18px;
    position: relative;
    width: 33.5px;
  }
  
  .check input {
    display:none;
  }
  
  .slider {
    background-color: #aba8a8;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
  }
  
  .slider:before {
    background-color: #fff;
    bottom: 2px;
    content: "";
    height: 14px;
    left: 2.5px;
    position: absolute;
    transition: .4s;
    width: 14px;
  }
  
  input:checked + .slider {
    background-color: #66bb6a;
  }
  
  input:checked + .slider:before {
    transform: translateX(15px);
  }
  
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
 .navt{
    color:white;
    font-size:15px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 10px;
    font-weight:400;
    cursor:default;
  }
  @media only screen and (max-width: 600px) {
    .main{
      height: 850px;
    }
    .htmlcode{
      width:200%;
      height: 400px;
      font-size: 18px;
    }
    .result{
      width:100%;
      height: 400px;
    }
    .compiler{
      flex-direction:column;
      justify-content: space-around;
    }
.main-nav{
  display:none;
}
.navchild3{
  display:none;
}

  }
  @media only screen and (max-width: 1100px) {
    .navt{
      font-size: 13px;
    }
  }
  @media only screen and (max-width: 900px) {
    .navt{
      font-size: 11px;
    }
  }

