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

body {
  height: 100%;
  width: auto;
  
  background-color: white;
  background-image: url("imgs/about/bar.png");
  background-repeat: repeat;
  
  color: #562820;
  font-family: Blink;
  
  padding: 0;
  margin: 0;
  
  animation: scrollMain 30s linear infinite;
}

@keyframes scrollMain {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 0% 100%;
  }
}

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

  background-color: #FFE5D2;
  box-sizing: border-box;
  padding: 20px;
  padding-top: 0px;
}

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

.home:Hover {
  cursor: pointer;
}

#headerlegal {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.hasborder {
  border-image: url("imgs/border.png");
  border-image-repeat: repeat;
  border-image-slice: 64;
  border-image-width: 16px;
  border-image-outset: 16px;
}

#ocref {
  width: 500px;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

#texto {
  text-align: center;
  padding: 10px;

  min-width: 0%;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

#social {
  width: 100%;
  height: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.redesocial {
  width: 100px;
  aspect-ratio: 16/16;
  flex-shrink: 0;
  transition: all 0.2s ease-in-out;
  min-width: 0%;
  max-width: 100%;
}

.redesocial img {
  width: 100%;
  height: auto;
}

.redesocial:Hover {
  transform: scale(1.1) rotate(9deg);
  filter: contrast(150%);
}

#divisor {
  margin: 20px 0;
  background: #E98270;
  background-image: url("imgs/divisorthing.png");
  background-repeat: repeat-x;
  background-size: contain;
  width: 99%;
  height: 20px;
  
  border: 4px solid white;
  border-radius: 20px;
  
  animation: divisorScroll 40s linear infinite;
}

@keyframes divisorScroll {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}

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


