@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 {
    margin: 0;
    padding: 0;
    width: 100vw;
    overflow-x: hidden;
    min-height: 100vh;
    background-color: #222222;
    
    display: flex;
    flex-direction: column;
    
}

#header{
    padding: 10px;
    height: auto;
}

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

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

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

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








#sliderContainers{
    display: flex;
    flex-direction: row;
    width:  80%;
}










#halvesContainer{
    display: flex;
    flex-direction: row;
    min-height: 100vh;
}

#darkHalf{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 100vw;
    
    width: 50%;
    
    background-color: #222222;
    
    align-items: flex-start;
    justify-content: center;
    align-content: flex-start;
}

#whiteHalf{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 100vw;
    
    width: 50%;
    
    background-color: #ffffff;
    
    align-items: flex-start;
    justify-content: center;
    align-content: flex-start;
}

.iconContainer{
    height: 130px;
    width: auto;
    max-width: 100%;
    margin: 20px;
    
    display: none;
    
    transition: all .2s ease;
}

.iconContainer:hover{
    transform: scale(1.03);
}

.icon{
    height: 100%;
}

.downloadIcon{
    text-decoration: none;
}






/* all the stuff from color slider*/

    #sliderControlers{
        width: 80%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        margin-top: 50px;
        background-color: white;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    #colorBox{
        width: 400px;
        height: 300px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 50px;
        
        background: hsl(180, 50%, 50%);
    }
    .slidecontainer {
      width: 70%; /* Width of the outside container */
      margin: auto 20px auto 20px;
    }
    
    /* The slider itself */
    .slider {
      -webkit-appearance: none;  /* Override default CSS styles */
      appearance: none;
      width: 100%; /* Full-width */
      height: 25px; /* Specified height */
      
      
      
      
      outline: none; /* Remove outline */
      opacity: 1.0; /* Set transparency (for mouse-over effects on hover) */
      -webkit-transition: .2s; /* 0.2 seconds transition on hover */
      transition: opacity .2s;
    }
    
    
    #hue{
    
        
    }
    #saturation{
        background-image: linear-gradient(to right, hsl(180, 0%, 50%), hsl(180, 100%, 50%));
    }
    #lightness{
        background-image: linear-gradient(to right, hsl(180, 100%, 0%), hsl(180, 100%, 50%), hsl(180, 100%, 100%));
    }
    
    
    #hexContainer{
        display: flex;
        flex-direction: column;
        margin: auto 50px auto 10px;
    }
    
    #hexInput{
        font-family: qr;
        font-size: 25px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
        
        width: 150px;
        
        
        text-align: center;
    }
    
    #copyButton{
        margin-bottom: 10px;
        font-family: qr;
        font-size: 25px;
        width: 150px;
        
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
        
        border-radius: 0;
    }
    
    
    
    /* Mouse-over effects */
    .slider:hover {
      opacity: 1; /* Fully shown on mouse-over */
    }
    
    /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
    .slider::-webkit-slider-thumb {
      -webkit-appearance: none; /* Override default look */
      appearance: none;
      width: 25px; /* Set a specific slider handle width */
      height: 40px; /* Slider handle height */
      background: #ffffff; /* Green background */
      cursor: pointer; /* Cursor on hover */
    }
    
    .slider::-moz-range-thumb {
      width: 25px; /* Set a specific slider handle width */
      height: 25px; /* Slider handle height */
      background: #04AA6D; /* Green background */
      cursor: pointer; /* Cursor on hover */
    }
    
    @media (max-width: 1000px){
        .slider{
            height: 80px;
        }
        
        .slidercontainer{
            margin: 50px auto 50px auto;
        }
        
        .slider::-webkit-slider-thumb{
            height: 90px;
        }
    }




























