/* Globals */

body {
  background-color: #474747;
  background-repeat: no-repeat;
  background-size: auto;
  margin: 0%;
}

canvas {
 align-self: center;
 border: 3px solid #383838;
 border-radius: 1rem;
}
/* VVV It may not look like it, but this is important!! VVV */
* {
  box-sizing: border-box;
}
/* ^^^ Do not delete!!! ^^^ */

h1 {
  font-family: sans-serif;
  color: black;
  text-align: center;
  background: linear-gradient(black, gray);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-family: sans-serif;
  color: black;
  text-align: center;
  background: linear-gradient(#383838, #918e02);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-family: sans-serif;
  color: gray;
  font-style: italic;
  font-size: 1rem;
}

p {
  font-family: sans-serif;
  color: #444444;
}

a {
  font-family: sans-serif;
  color: #444444;
  cursor: default;
}

li {
  font-family: sans-serif;
}

/* Classes */

.title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* backckground-color: #ffffff; */
  padding: 1rem;
}

.titlebanner {
  box-shadow: 0px 0px 30px 0px black;
  border-radius: 1rem;
  margin: 1rem;
}

.logo {
  height: 100px;
  width: auto;
  border: solid 0px black;
  border-radius: 100%;
  margin-right: 2rem;
}

.column-title {
  display: flex;
  flex: wrap;
  flex-direction: row;
  width: 50%;
  margin: auto;
  padding: 5px;
  align-content: center;
}

.column-subtitle {
  display: flex;
  flex: wrap;
  flex-direction: row;
  width: 25%;
  margin: auto;
  padding: 5px;
  align-content: center;
}

.column-side-image {
  height: 50px;
  width: auto;
  align-self: center;
  border: solid 0px black;
  border-radius: 100%;
  margin-right: 2rem;
}

.wrapper {
  display: flex;
  flex: wrap;
  flex-direction: column;
  width:90%;
  height: 100%;
  align-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
  background-color:#ffffff;
  border: solid 2px black;
  border-radius: 1rem;
}

 /* Content Columns */

.navagation {
  display: flex;
  flex-direction: row;
  width: 100%;
  order: 1;
  padding: 10px;
  align-items: flex-start;
  justify-content: space-around;
}

.content {
  order: 2;
  margin: 1rem;
  justify-content: center;
  align-content: center;
}

.gif {
  display: flex;
  border-radius: 2rem;
  margin-left: auto;
  margin-right: auto;
  width: 45%;
}
