@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

body {
	background: #282828;
}

h1, h2, p {
  font-family: JetBrains Mono;
	color: #ebdbb2;
	text-align: center;
}

.centered-container {
	text-align: center;
}

img {
  transition: transform 0.3s ease;
  
  border: 4px solid #ebdbb2;
  border-radius: 20px;
}

img:hover {
  transform: scale(1.05);
}

a:link {
  color: #458588;
}

/* visited link */
a:visited {
  color: #b16286;
}

/* mouse over link */
a:hover {
  color: #83a598;
}

/* selected link */
a:active {
  color: #d3869b;
}
