@import url('https://fonts.googleapis.com/css2?family=Kablammo&family=Poppins:wght@400;700&family=Roboto:wght@400;700&display=swap');



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* header */

header{
    font-family: 'Kablammo', cursive;
    background-color: #393E46;
    text-align: center;
    padding: 30px;
    letter-spacing: 20px;
    color: #EEEEEE;
}

/* main section */


main{
    font-family: 'Poppins', sans-serif;
    height: 610px;
    width: 100%;
    background-color: #222831;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.box-part{
    background-color: #EEEEEE;
    height: 500px;
    width: 500px;
    border-radius: 8px;
}
.select-part{

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.27rem;
    margin-top: 40px;

}


/* footer */

footer{
    font-family: 'Kablammo', cursive;
    letter-spacing: 10px;
    color: #EEEEEE;
    font-size: 20px;
    font-weight: 40px;
    height: 30px;
    width: 100%;
    text-align: center;
    background-color: #00ADB5;
}


/* button style */
.myButton {
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
	background-color:#f9f9f9;
	border-radius:5px;
	border:1px solid #dcdcdc;
	display:inline-block;
	cursor:pointer;
	color:#666666;
	font-size:16px;
	font-weight:bold;
	padding:6px 11px;
	text-shadow:0px 1px 0px #ffffff;
}
.myButton:hover {
	background:linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
	background-color:#e9e9e9;
}
.myButton:active {
	position:relative;
	top: 2px;
}

@media screen and (min-device-width: 570px) and (max-device-width: 1295px) { 
    
    main{
        height: 1300px;
    }
}

@media screen and (max-width: 570px){

    main{
        height: 1500px;
    }
    .box-part{
        height: 300px;
        width: 300px;
    }

    footer{
        height: 50px;
    }

    header,main,footer{
        width: 700px;
    }


}

@media screen and (max-width: 380px){

    main{
        height: 2000px;
    }

}




/* input range button */


input[type="range"] {
    appearance: none;
    background: transparent;
    cursor: pointer;
    width: 165px;
    height: 10px;
  }
  

  input[type="range"]:focus {
    outline: none;
  }
  
 
  input[type="range"]::-webkit-slider-runnable-track {
    background-color: #add8e6;
    border-radius: 2px;
    height: 6px;
  }
  

  input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    margin-top: -3px;
    background-color: #808080;
    border-radius: 20%;
    height: 12px;
    width: 12px;
  }
  
  input[type="range"]:focus::-webkit-slider-thumb {
    outline: 3px solid #808080;
    outline-offset: 2px;
  }
  

  input[type="range"]::-moz-range-track {
    background-color: #add8e6;
    border-radius: 2px;
    height: 4px;
  }
  
 
  input[type="range"]::-moz-range-thumb {
    background-color: #808080;
    border: none;
    border-radius: 50%;
    height: 12px;
    width: 12px;
  }
  
  input[type="range"]:focus::-moz-range-thumb {
    outline: 3px solid #808080;
    outline-offset: 2px;
  }
  
  