* {
  box-sizing: border-box;
}

.container-fluid {
  width: 100vw;
  min-height: 100vh;
  background: #bdc3c7;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #2c3e50, #bdc3c7);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #2c3e50, #bdc3c7);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-bottom: 10px;

}

header h1 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  text-shadow: #000 5px 5px 4px;
}

main {
  text-align: center;
}

main h4 {
  color: rgb(12, 12, 12);
  font-size: 22px;
  font-weight: bold;
}

main a {
  color: rgb(65, 17, 155);
  font-size: 25px;
  font-weight: bold;
}

main .drop {
  margin: auto;
  width: 80%;
  min-height: 400px;
  background: url('../assets/icon_download.svg') center  no-repeat;
  background-color: rgb(219, 216, 216);
  border: 2px dashed #00ace6;
  border-radius: 8px;
  color: blue;
  font-weight: bold;
}


main h3 {
  color: #fff;
 text-align: center;
}

main #msg {
  display: grid;
  grid-template-columns: 6fr 1fr 1fr;
}

main #msg h2 {
  color: black;
  font-weight: bold;
}

main #msg #newUploads{
  width: 130px;
  margin-top: 10px;
  font-size: 15px;
  border: none;
  background-color:rgb(104, 104, 104);
  font-weight: bold;
  color: #fff;
  padding: 8px;
  border-radius: 5px;
  text-decoration: none;

  transition: 0.3s;
}

main #msg #newUploads:hover{
  background-color:rgb(75, 75, 75);
}

main #msg #atention, h5 {
  color: red;
  font-weight: bold;
}

main #msg #insertMarca {
  width: auto;
  margin-top: 10px;
  font-size: 15px;
  border: none;
  background-color:rgb(53, 25, 212);
  font-weight: bold;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  transition: 0.3s;
}

main #msg #insertMarca:hover{
  background-color:rgb(25, 23, 131);
}

main .wrapper {
  width: 100%;
  height: auto;
  padding: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  align-items: center;
  justify-content: center;
}

.wrapper .imageContent {
  width: 250px;
  height: 280px;
  margin-bottom: 5px;
  text-align: center;
  border-radius: 8px;
  background-color: rgb(236, 236, 236);
  box-shadow: black 1px 5px 6px;
  border-radius: 8px;
  cursor: move;

  transition: 0.1s;
}

.wrapper .imageContent:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.wrapper .imageContent p {
  font-size: 15px;
  font-weight: bold;
}

.wrapper .imageContent a{
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
}

.wrapper .imageContent button {
  border: none;
  font-size: 15px;
  font-weight: bold;
}

.wrapper .imageContent #imagens{
  width: 240px;
  height: 180px;
  object-fit: cover;
  padding: 10px 10px 0 10px;
}

.wrapper .imageContent .tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5px;
}

.wrapper .imageContent #novo_nome {
  width: 150px;
  text-align: center;
}

.wrapper .imageContent #renameSubmit {
  border: none;
  background: #7a81ec;
  font-weight: bold;
  color: #fff;
  padding: 5px;
  border-radius: 5px;

  transition: 0.3s;
}

.wrapper .imageContent #renameSubmit:hover {
  background: #5963ec;
}





