html {
  color: black;
  background-color: white;
  font-size: 15px;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  animation: pageTransition 0.5s linear forwards;
}

body {
  margin: 0;
}

ul {
  width: 50vw;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

ul li {
  list-style-type: none;
  display: flex;
}

li a#nav {
  text-decoration: none;
  font-size: 2.5rem;
  font-weight: 300;
  transition: 0.15s;
  color: black;
}

li a#nav:hover {
  color: #7644c3;
  transform: scale(1.2);
}

.navBar {
  height: 10vh;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 100vw;
  opacity: 0;
  /* margin-top: 10vh; */
  position: fixed;
  bottom: 0;
  animation: pageTransition 0.75s 0.5s forwards;
}

.experience {
  width: 100vw;
  height: 80vh;
  display: inline-flex;
  flex-direction: row;
  animation: pageTransition 1.5s forwards;
}

@keyframes pageTransition {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.experienceTile {
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.experienceLogo {
  width: 50vw;
  height: 40vh;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-top: 3vh;
}

.experienceLogo a {
  width: 60%;
}

img {
  transition: 0.2s;
  width: 100%;
}

img:hover {
  transform: scale(1.05);
  opacity: 70%;
}

.experienceInfo {
  width: 80%;
  height: 40vh;
  text-align: left;
  display: flex;
  justify-content: center;
}

.dates {
  font-size: 1.2rem;
}

h1 {
  margin-top: 1.5vh;
  font-size: 2.5rem;
}

.innerParagraph {
  width: 90%;
}

p {
  margin-top: 1.5vh;
  margin-bottom: 0;
  font-weight: 300;
  font-size: 1.75rem;
}

.projects {
  height: 10vh;
  width: 100vw;
  display: flex;
  align-items: flex-end;
}

.projects h1 {
  margin: 0;
  font-size: 1.5rem;
}

.coloredText {
  color: #7644c3;
}

.projects h1 {
  font-weight: 100;
  margin-left: 2.5vw;
}
