/* Created by Conrad MacKethan on 1/6/23 /*

@import url('https://fonts.googleapis.com/css?family=Chivo:400,700');

/* UNIVERSAL */
* {
  cursor: default;
}
html {
  scroll-behavior: smooth;
}
html, body {
  overflow: hidden;
	overflow-y: scroll;
}
body {
	margin: 0;
	font-family: 'Chivo', sans-serif;
}
a {
	color: white;
}
a:hover {
  cursor: pointer;
}
section {
	min-height: 100vh;
}
article {
	margin: 0 auto;
}

/* HOME */
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #141E30;
  background: -webkit-linear-gradient(to right, #243B55, #141E30);
  background: linear-gradient(to right, #243B55, #141E30);
}
#home {
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
  background-color: black;
}
#home * {
	display: block;
	text-align: center;
  z-index: 1;
}
#home a:hover {
  cursor: default;
}
#conradImage {
	margin: auto;
  width: 20em;
  cursor: default;
}
#name {
	font-weight: bold;
	font-size: 3.5em;
  color: white;
}
#title {
  color: white;
  opacity: 0.8;
	font-size: 2em;
}
#scrollButton {
  position: absolute;
  width: 40px;
  left: 50%;
  margin-left: -20px;
  bottom: 20px;
}
#scrollButton:hover {
  opacity: 0.65;
  transition: all 0.3s;
  cursor: pointer;
}

/* ABOUT */
.page {
	border-top: 50px solid transparent;
  margin-top: -50px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
h2 {
  color: darkslategray;
  font-size: 25px;
  font-weight: normal;
  margin: 20px 25px;
  margin-top: 20px;
  padding: 5px;
}
p {
  color: white;
  font-size: 18px;
}
#blurb {
  margin: 0 40px;
  padding: 20px;
  background: #141E30;
  background: -webkit-linear-gradient(to right, #243B55, #141E30);
  background: linear-gradient(to right, #243B55, #141E30);
  border-radius: 20px;
}
#blurb2 {
  margin: 0 20px;
  height: 300px;
}
#blurb2 a {
  padding: 10px;
  margin: 20px 20px;
  background-color: darkslategray;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
}
#blurb2 a:hover {
  opacity: 0.65;
  transition: all 0.3s;
}

/* RESUME */
#wrapper {
  margin: auto;
  width: 100%;
  text-align: center;
}
