* {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  border: none;
}

body {
  background-color: white;
  color: black;
  margin: 1rem;
  font-family: sans-serif;
  text-align: center;
}

#banner {
  background-color: white;
  color: black;
  text-align: center;
  min-height: 6rem;
  padding-top: 5rem;
  margin: -1rem -1rem 0rem -1rem;
  /* position: fixed;
  top: 0;
  width: 100%;
  overflow: hidden; */
  /* border-bottom: 1px solid black; */
}

h2.smallbanner {
  background-color: white;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  color: black;
  text-align: center;
  min-height: 2.5rem;
  padding-top: 0.6rem;
  margin: 0rem -1rem 0rem -1rem;
}

h1 {
  line-height: 4rem;
}

h2 {
  line-height: 2rem;
}

p {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  max-width: 45rem;
  display: block;
  text-align: left;
}

li {
  padding: 1rem;
  display: inline;
  margin: 0rem;
  list-style-type: none;
}

#navbar {
  text-align: center;
  padding: 1rem;
  background-color: wheat;
  position: fixed;
  top: 0;
  width: 100%;
  overflow: hidden;
  margin-left: -1rem;
  /* border-bottom: 1px solid black; */
}

a {
  text-decoration: none;
  color: grey;
}

a#navbar {
  color: red;
}

img {
  margin: auto;
}

#single {
  display: block;
}

/* div#github-links {

} */

.larger-text {
  font-size: 1.5rem;
}

ul {
  list-style: none;
  padding-left: 0;
}

li.portfolio {
  padding: 0;
}

#contact {
  display: flex;
  text-align: center;
}

.centre {
  text-align: center;
}

li:hover {
  background-color: white;
}

.pageKind {
  color: #8000AA;
  animation-name: enterRight;
  animation-duration: 2s;
  position: relative;
}

.myName {
  animation-name: enterLeft;
  animation-duration: 2s;
  position: relative;
}

@keyframes enterRight {
  0% {
    opacity: 0;
    left: 50%;
    transform: scale(0);
    /* font-size: 0%; */
  }
  70% {
    /* opacity: 1; */
    /* left: -5%; */
    /* font-size: 120%; */
  }
  100% {
    opacity: 1;
    left: 0%;
    transform: scale(2);
    font-size: 100%;
  }
}

@keyframes enterLeft {
  0% {
    opacity: 0;
    right: 50%;
    transform: scale(0);
    /* font-size: 0%; */
  }
  70% {
    /* opacity: 1; */
    /* right: -5%; */
    /* font-size: 120%; */
  }
  100% {
    opacity: 1;
    right: 0%;
    transform: scale(2);
    font-size: 100%;
  }
}
