/* Reset Styles */
* {
  margin: 0px;
  padding: 0px;
}

body {
  background-color: rgb(10, 0, 32);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  font-family: helvetica, sans-serif;
  color: lightgrey;
}

/* Work In Progress Card - Remove Later */
div.flex {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

div.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5%;
  min-width: 300px;
  max-width: 500px;
  min-height: 150px;
  max-height: 450px;
  background-color: darkslateblue;
  box-shadow: 10px 5px 5px rgb(174, 167, 218);
  text-align: center;
}

div.card p {
  padding: 20px;
}
