  :root{
    --red: #F94144;
    --light-red: #f17d7f;
    --dark-red: #911416;

    --blue: #277DA1;
    --light-blue: #57b5dd;
    --dark-blue: #005a81;

    --orange: #eead2d;
    --light-orange: #fcc965;
    --dark-orange: #bd8109;

    --green: #54a00e;
    --light-green: #98d85c;
    --dark-green: #356903;

    --border-size:4px;

  }

  body {
    cursor: url("cursor/digimon.cur"), auto;
  }

  @font-face{
      font-family: 'basiic';
      src: url(fonts/basiic.ttf);
      }

  @font-face{
      font-family: 'virale';
      src: url(fonts/virale.ttf);
  }

  @font-face{
    font-family: 'pixelverdana';
    src: url(fonts/pixelverdana.woff);
  }

  @font-face{
    font-family: 'snasm';
    src: url(fonts/snasm.ttf);
  }

  @font-face{
    font-family: 'pixelart';
    src: url(fonts/pixelart.ttf);
  }

  @font-face{
    font-family: 'tickerbit-regular';
    src: url(fonts/tickerbit-regular.woff);
  }

  html {
    
    background-image: url(images/blackdots.jpg);


    font-family: serif;
  }

  .global {
    color: white;
    display: flex;
    flex-direction: row;
    width: 65%; 
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
  }

  .separador{
    margin: 0 auto;
    display: block;
  }

  header{
    font-family: 'snasm';
    background-image: url(images/clouds.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
    margin:0 0 20px;


  }

  header > h1{
    font-size: 5vw;
    text-align: center;
    background: -webkit-linear-gradient(0deg, rgb(0, 225, 255) 0%, rgb(211, 68, 224) 17%, rgb(146, 0, 134) 55%, rgba(253,90,133,1) 67%, rgba(254,190,183,1) 86%, rgba(34,152,103,1) 100%);
    filter: drop-shadow(5px 5px 2px rgb(0, 5, 75));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    padding: 65px 0;
  }

  main {

  }

  .sidebar{
    width: 20%;
    margin-right: 10px;
    font-family: virale;
    font-size: 20px;
    letter-spacing: -3px;
  }

  .section-header{
    font-family: 'virale';
    font-weight: bold;
    font-size: 50px;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
    color: white;
    /* border: solid black 1px;
    border-radius: 2px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: linear-gradient(to top, rgba(255,135,253,0.4) 0%, rgba(108,0,168,0.7) 100%); */
  }

  .section-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .menu-button{
    text-align: left;
    color: white;
    transition: all .1s ease-in;
    margin-bottom: 5px;
  }
  .menu-button > a{
      text-decoration: none;
      color:white;
  }
  .menu-button:hover{
    letter-spacing: 2.7px;
    cursor: pointer;
  }

  .cards{
    margin-top: 20px;
    display:flex;
    flex-direction: column;
    justify-content: space-around;
    
  }
  .cards > img{
    width: 88px;
    margin-bottom: 10px;
  }


  .main-column{
    color:white;
    width: 80%;
  }

  .main-column-content{
    margin: 10px;
    display:flex;
    flex-direction: column;
    justify-content: center;
  }

  .main-column-content > img {
    width: 80%;
    margin: 0 auto;
  }

  .quote{
    font-style: italic;
    color: rgb(207, 5, 207);
    padding: 0 60px;
    text-align: justify;
  
  }

  .quote_author{
    text-align: right;
    margin-bottom: 20px;
  }

  .banners{
    margin-left: 10px;
  }



  footer {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 0;
    color:white;
  }


  .global_single {
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 65%; 
    margin: 0 auto;
    margin-top: 20px;
  }

.single_column_page_left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.single_column_page_right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

  .single_column_page_center{
    color:white;
    width: 100%;
    flex-grow: 4;
    min-width: 300px;
  }

  .single_column_page_center > * {
    width: 100%;
    display: block;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  
  .backlink {
    text-align: center;
    margin-top: 50px;
  }
  .musica_imagem{
    position:fixed; 
    right: 40px;
    top: 30px;
    width: 400px;
    }

  .scrolling-div{
      background-color: rgb(151, 151, 151);
      border: 2px;
      border-color: black;
      overflow: hidden;

  }
  .scrolling-text {
    color: white;
      /* animation properties */
      margin: 3px 0 3px 0;
      -moz-transform: translateX(100%);
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
      
      -moz-animation: my-animation 6  0s linear infinite;
      -webkit-animation: my-animation 60s linear infinite;
      animation: my-animation 60s linear infinite;
    }
        
        /* for Firefox */
        @-moz-keyframes my-animation {
          from { -moz-transform: translateX(100%); }
          to { -moz-transform: translateX(-100%); }
        }
        
        /* for Chrome */
        @-webkit-keyframes my-animation {
          from { -webkit-transform: translateX(100%); }
          to { -webkit-transform: translateX(-100%); }
        }
        
        @keyframes my-animation {
          from {
            -moz-transform: translateX(100%);
            -webkit-transform: translateX(100%);
            transform: translateX(100%);
          }
          to {
            -moz-transform: translateX(-100%);
            -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
          }
        }

  .button {
          user-select: none;
          -moz-user-select: none;
          -khtml-user-select: none;
          -webkit-user-select: none;
          -o-user-select: none;
  } 



        /*background: rgb(83,166,195);
  background: linear-gradient(90deg, rgba(83,166,195,1) 0%, rgba(85,119,189,1) 30%, rgba(145,16,135,1) 48%, rgba(253,90,133,1) 67%, rgba(254,190,183,1) 86%, rgba(34,152,103,1) 100%);*/