* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "JetBrains Mono", sans-serif;
}

html {
  scroll-behavior: smooth;
  background-color: #000000;
}

.white
{
  color: rgb(255, 255, 255);
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  gap: 2rem;
  margin: 0;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, #008643 1px, transparent 1px),
    linear-gradient(to bottom, #008643 1px, transparent 1px);
}

header,
main,
footer {
  text-align: center;
}

a {
  text-decoration: none;
  font-size: 1rem;
  color: var(--purple);
}

a:hover {
  opacity: 0.9;
}

.pfp
{
  height: 150px;
  width: 150px;
  border-radius: 50px;
}

button
{
  background-color: #0ab456;
  border-radius: 5px;
  width: 90vw;
  height: 6vh;
  max-width: 250px;
  border-style: solid;
  border-width: 2px;
  border-color: rgb(41, 41, 41);
  box-shadow: 4px 6px rgb(255, 255, 255);
  margin: 1vh;
}

.non-selectable {
    -webkit-touch-callout: none;  
    -webkit-user-select: none;    
    -khtml-user-select: none;     
    -moz-user-select: none;       
    -ms-user-select: none;        
    user-select: none;            
}
