@import url("./Fonts/BigBlueTermPlusNerdFont-Regular.ttf");
@font-face {
  font-family: BigBlue;
  src: url("./Fonts/BigBlueTermPlusNerdFont-Regular.ttf");
}

@keyframes scrollingDown {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}

body {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100vh;
	overflow: hidden;
	background-color: #000;
}

#content {
  display: flex; flex-direction: column; justify-content: center;
  max-width: 550px;
  background: #000000;
  padding: 2%;
  border-radius: 75px;
  }

a {
  font-family: 'BigBlue', sans-serif; font-size: 14px; text-decoration:none;
  color: white;
  }

#socials {
  display: flex; flex-direction: row; align-items: center; justify-content: center;
  }
  
  
#button {
    font-weight: normal;
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 100%);
    padding: 15px;
    box-shadow: 0px 0px 3px 0px rgba(0,255,0,0);
    transition: ease 0.25s;
}

#button:hover {
    color: #000;
    font-weight: bold;
    background: linear-gradient(90deg, rgba(2,226,0,1) 0%, rgba(153,255,0,1) 100%);
    box-shadow: 0px 0px 5px 0px rgba(0,255,0,1);
}

#rdimagem {
  max-height: 500px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 5%;
  }
  
#rdimagem img {
  max-height:100%
  }