
:root{
    --background-color:rgb(36, 36, 36);
    --button-bg:rgb(0, 191, 255);
  }
  *{
    margin: 0;
    padding: 0;
    font-family: 'Poppins',sans-serif;
  }
  body{
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    background-color: #bdc3c7;
  }
  .container{
    height: 100%;
    width: 100%;
    
  }
  .editor-container{
    margin: auto;
    width: 80%;
    background-color:white;
  }
  .image-container{
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #bdc3c7;
    flex-direction: column;
 }
 .image-viewer{
  width: 500px;
  height: 80%;
 border:2px solid #bdc3c7;
 border-radius: 2rem;
 display: flex;
 justify-content: center;
 align-items: center;
 position: relative;
 }
 @media only screen and (max-width:633px) {
  .image-viewer{
    width: 100%;
  }
 }
 .buttons{
  width: 100%;
  height: 100%;
  position: relative;

 }
 .buttons button{
  position: absolute;
  
 }
 .buttons .remove{
  height: 45px;
  width: 45px;
  border: none;
  right: 0;
  border-radius: 2rem;
  background-image: url(close-icon-13577.png);
  background-position: center;
  background-size: cover;
  background-color: rgb(119, 119, 119);
  
  cursor: pointer;
 }
 .buttons input{
   display: none;
 }
 #select-image{
  background-color: var(--button-bg);
  border: none;
  padding: 10px;
  color: white;
  border-radius: 30px;
  font-size: 20px;
  top: 43%;
  left: 35%;
  cursor: pointer;
  border: 2px solid white;
}
@media only screen and (max-width:417px) {
  #select-image{
    left: 32%;
  }
}
@media only screen and (max-width:390px) {
  #select-image{
    left: 29%;
  }
}
@media only screen and (max-width:336px) {
  #select-image{
    left: 26%;
  }
}
@media only screen and (max-width:315px) {
  #select-image{
    left: 21%;
  }
}
#select-image:hover{
  transition: all 0.3s;
  color:var(--button-bg);
  border-color: var(--button-bg);
  background-color: white;
}
.tools-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 40px;
  padding: 20px;
  column-gap: 20px;
}
@media only screen and (max-width:366px) {
  .tools-container{
    display: flex;
    flex-direction: column;
  }
}
.input-field{
  display: flex;
}
.tools-input{
  width: 90%;
}
.tools-value{
  width: 10%;
  padding-left: 2%;
}
.tool-container{
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  color: #2c3e50;
}
#remove-img-button{
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50px;
  height: 30px;
  width: 30px;
  background-position: center;
  background-size: contain;
  background-image: url(https://png.pngtree.com/png-vector/20190215/ourmid/pngtree-vector-cancel-icon-png-image_533028.jpg);
  cursor: pointer;
}
#remove-img-button:hover{
  opacity: 0.8;
}
.opacity{
  opacity: 0.5;
}
.download-image{
  background-color:var(--button-bg);
  padding: 10px;
  color: white;
  border: none;
  margin-top: 10px;
  border-radius: 30px;
  font-size: 20px;
  cursor: pointer;
  border: 2px solid var(--button-bg);
  display: none;
}
.download-image:hover{
  transition: all 0.3s;
  color:var(--button-bg);
  border-color: var(--button-bg);
  background-color: white;
}
.display-block{
  display: block;
}
