
* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'neue';
  src: url('Neue\ Alte\ Grotesk\ Bold.otf') format('opentype'); /* Legacy Browsers */
  src: url('Neue\ Alte\ Grotesk\ Regular.otf') format('opentype'); 
}

body {
    font-family: 'neue', sans-serif;
    font-weight:bolder;
    color: white;
    background-image: url("images/backgroundcores-07.png");
    background-size: cover; /* Scale the background image to cover the entire background area */
  background-repeat: repeat; /* Prevent the background image from repeating */
  background-position: center; /* Center the background image */
  width: 100%;
  height: 100%; /* Set the height to cover the full viewport height */
  padding: 0;
  margin: 0;
}

body, html {
    overflow: auto; /* Allow scrolling by default */
  }

  /* @media screen and (min-width: 769px) {
    body, html {
      overflow: hidden;
    }
  } */

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}


.header {
  /* background-color: #9933cc; */
  /* color: #ffffff; */
  padding: 15px;
}

.header img{
    height: 50px; 
   
}

  
.header img:hover {
    animation: shake 0.5s; /* play the animation infinitely on hover */
    /* you can adjust the duration and other properties as needed */
  }

@keyframes shake {
    0% { transform: translateX(-1px); }
    25% { transform: translateX(1px); }
    50% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
    100% { transform: translateX(0); }
  }


.menu {
    display: flex;
    flex-direction: column;
    font-weight: 400;
  }
  
  .menu label,
  .menu input {
    margin-bottom: 10px; /* Adjust spacing between elements */
  }

.col-6 {
    /* display: flex; */
    /* justify-content: center; Center horizontally */
    /* align-items: center; Center vertically */
    position: relative;
  }

#namePlaceholder{
    /* position: absolute;
    left: 18%;
    bottom: 10%;
    margin: 0;
    padding: 5px; */
    max-width: 50%; /* Adjust this value as needed */
    word-wrap: break-word; 
    position:absolute;
    margin: 0;
    left: 15.5%;
    bottom: 7%;
    width: fit-content;
    padding: 0.5%;
    padding-right: 10px;
    background-color: #A860CE;
    border-top-right-radius: 20px;
}

#moldura{
    width: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

#moldura_div {
    position: relative; /* Ensure positioning context for absolute positioning */
    display: flex;
    justify-content: center;
}

#moldura_div img {
    display: block; /* Ensure the images fill the space inside the div */
}

#imageContainer {
    background-color: #A860CE;
    position: absolute;
    top:25%;
    left: 12%;
    width: 60%; /* Adjust the size of the square as needed */
    height: 0;
    padding-top: 59%; 
    background-size: cover;
    background-position: center;
    z-index: -1;
}

#canvas{
  position: absolute;
  width: 80%;
  height:100%;
}

.aside {
  /* background-color: #33b5e5; */
  padding: 15px;
  color: #ffffff;
  /* text-align: center; */
  /* font-size: 14px; */
  /* box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); */
}


.footer {
    /* display: flex; */
    /* justify-content: center; */
  /* background-color: #0099cc; */
  /* color: #ffffff; */

  /* font-size: 12px; */
  padding: 15px;
  
}

#button_label{
  margin-top: 50px;
}

#exportBtn{
  height: 35px;
}

label{
background-color: #A860CE;
width: fit-content;
}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}
