@media (max-width: 768px) {
  body{
    background-size: auto, 70vh, 80vh, auto;
  }
  h1{
    font-size: 6vw;
  }
}


@media (min-width: 769px) {
  body{
    background-size: auto, 50%, 40%, auto;
  }

  h1{
    font-size: 2.5rem;
  }
}

*{
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
}

body{
  background-color: #091D39;
    background-attachment: local, local, local, fixed;
    background-image: url('/noise-transparent.png'), url('/estrelas.png'), url('/estrelas.png'), radial-gradient(#10455D, #091D39);
    background-repeat: repeat, repeat, repeat, repeat;
    animation: starsMoving 360s linear infinite;
}

@keyframes starsMoving {
    from{
      background-position: center, 100% 100%, center , center;
    }
    to{
      background-position: center, 0 0, center, center;
    }
}




.material-symbols-outlined{
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

body::-webkit-scrollbar {
    width: 10px;
  }
  
  body::-webkit-scrollbar-track {
    background: #091D39;
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: #10455D;
    border-radius: 5px;
  }

  .contactButtons{
    z-index: 999;
    display: flex;
    justify-content: space-evenly;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
}

#instagram{
    filter: drop-shadow(0px 0px 2px #091D39);
    height: 60px;
    width: 60px;
    background-size:cover;
    background-image: url(/instagram-white.webp);
}

#instagram:hover{
  background-image: url(/instagram-gradient.webp);
}

::selection{
  color: #10455D;
  background: white;
}
