@font-face {
  font-family: 'Celeste';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/Renogare.otf') format('OpenType');
}

body {
  height: 100%;
  width: auto;
  
  color: white;
  font-family: Celeste;
  
  padding: 0;
  margin: 0;
  
}

.container {
  margin: auto;
  width: 100%;
  min-height: 100vh;

  background-color: #08051d;
  background-image: url("imgs/gallery/bg.png");
  background-repeat: repeat;
  background-size: contain;
  animation: slide 30s linear infinite;

  box-sizing: border-box;
  padding: 20px;
  padding-top: 0px;
  
  border-image: url("imgs/border2.png");
  border-image-repeat: repeat;
  border-image-slice: 64;
  border-image-width: 16px;
  border-image-outset: 0px;
}

@keyframes slide {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0%; /* Move the width of one image */
    }
}

.home {
  border-radius: 20px;
  border-color: #9eb1ff;
  border-top: none;
  
  color: black;
  font-family: Blink;
  background-color: #9eb1ff;
  
  width: 50%;
  height: 20px;
  position:relative;
  left: 25%;
  margin-bottom: 20px;
}

.home:Hover {
  cursor: pointer;
}

#divisor {
  margin: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  background: #E98270;
  background-image: url("imgs/divisorthing2.png");
  background-size: contain;
  width: 40px;
  height: 40px;
  
  border: 4px solid white;
  border-radius: 100%;
  
  animation: divisorRotate 5s linear infinite;
}

@keyframes divisorRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#containerButton {
  width:100%;
  
  display:flex;
  flex-direction: row;
  
  justify-content: center;
  align-items: center;
}

.art {
  font-family: Celeste;
  
  text-align: center;
  background-color: white;
  border: 5px solid white;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  
  width: 120px;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}

.art.ativo {
  background-color: #4d4982;
  border: 5px solid #4d4982;
  scale: 0.9;
}

.anim {
  font-family: Celeste;
  
  text-align: center;
  background-color: white;
  border: 5px solid white;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  
  width: 120px;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}

.anim.ativo {
  background-color: #4d4982;
  border: 5px solid #4d4982;
  scale: 0.9;
}

.galeria-artes {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #4869A8;
    border-radius: 12px;
    
    transition: opacity 0.3s ease;
}

.galeria-anim {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #4869A8;
    border-radius: 12px;
    
    display: none;
    
    transition: opacity 0.3s ease;
}

.artes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.artes img {
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.artes img:hover {
    transform: scale(1.05);
}

@media (max-width: 600px) {
  #headerlegal {
    flex-direction: column;
  }
  
  #social {
    flex-direction: column;
    min-height: 100vh;
  }
}


