* 
{
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman', Times, serif;
}

body 
{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100dvh;
  align-items: center;
  background-color: rgba(31, 31, 31, 1);
}

.hero 
{
  display: flex;
  flex: 1;
  font-size: 32px;
  font-weight: 700;
  font-style: Tahoma;
  color: rgb(12, 9, 13);
  margin-left: 80px;
}

.links 
{
  display: flex;
  width: 400px;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.git 
{
  display: flex;
  height: 30px;
  width: 55px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 4px;

}

.linked-in 
{
  display: flex;
  height: 40px;
  width: 75px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.git-img,
.link-img 
{
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.header-container 
{
  display: flex;
  min-width: 100%;
  align-items: center;
  justify-content: flex-end;
  background-color: rgb(255, 251, 252);
  height: 50px;
  width: 100%;
  margin-bottom: 100px;
}

#content,
.slider-container 
{
  display: flex;
  width: 1000px;
  justify-content: center;
}

#grid-container 
{
  flex-shrink: 0;
  display: grid;
  width: 500px;
  height: 500px;
  border: 2px grey solid;
  box-shadow: 4px 2px 2px rgba(0, 0, 0, .4);
}

.slider-div 
{
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 300px;
  height: 50px;
  border: black 1px solid;
  margin-bottom: 50px;
  margin-top: 20px;
  margin-left: 280px;
  background-color: rgba(255, 252, 249, 1);
  border-radius: 10px;
  box-shadow: inset 0 0 10px;
}

/*Chrome*/
@media screen and (-webkit-min-device-pixel-ratio:0) 
{
  input[type='range'] {
    overflow: hidden;
    width: 180px;
    -webkit-appearance: none;
    background-color: rgb(74, 123, 157);
  }
  
  input[type='range']::-webkit-slider-runnable-track 
  {
    height: 10px;
    -webkit-appearance: none;
    color: #13bba4;
    margin-top: -1px;
  }
  
  input[type='range']::-webkit-slider-thumb 
  {
    width: 12px;
    -webkit-appearance: none;
    height: 10px;
    cursor: ew-resize;
    background: #434343;
    box-shadow: -80px 0 0 80px rgb(194, 140, 174);
  }
}

/** FF*/
.slider-div input[type="range"]::-moz-range-progress 
{
  background-color: #43e5f7; 
}

.slider-div input[type="range"]::-moz-range-track 
{  
  background-color: #9a905d;
}

/* IE*/
.slider-div input[type="range"]::-ms-fill-lower 
{
  background-color: rgb(238, 198, 67); 
}

.tools 
{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 500px;
  width: 250px;
  border: 1px black solid;
  margin-right: 50px;
  flex-shrink: 0;
  background-color: rgba(255, 252, 249, 1);
  border-radius: 10px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 1);
}

button 
{
  all: unset;
  cursor: pointer;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 15px;
  text-align: center;
  box-shadow: 2px 2px 20px;
}

.color-picker 
{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 200px;
  width: 180px;
  border: 1px black solid;
  box-shadow: inset 0 0 4px;
  background-color: rgb(114, 112, 112);
  border-radius: 4px;
}

.mini-slide
{ 
  height: 8px;
  margin-right: 20px;
  border-radius: 4px;
}

.preview
{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  width: 98%;
  margin-top: 2px;
  border-radius: 4px;
  border: 1px black solid;
}

.color-slide
{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  height: 20px;
  width: 98%;
}

.color
{
  text-align: start;
  min-width: 50px;
  font-size: 14px;
  font-weight: 500;
}

.slider 
{
  width: 200px;
}

.size 
{
  font-size: 20px;
  margin-right: 5px;
  width: 45px
}

.footer-container
{
  margin-bottom: 10px;
}

.footer-container .links img
{
  height: 30px;
  width: 30px;
}

.footer-container .git
{
  margin-bottom: 4px;
}

.footer-container .git,
.footer-container .link
{
  transition: transform 0.3s ease-in-out;
}

button:hover
{
  transform:scale(1.06);
  border: 1px solid rgba(31, 31, 31, 0.4);
  background-color: rgb(74, 123, 157);
}

.footer-container 
{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 100%;
}

.footer-container .git img:hover,
.footer-container .link:hover
{
  transform:rotate(360deg) scale(1.2);
}

.bottom-text
{
  font-size: 14px;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}


