html {
  height: 100%;
  padding: 0px;
  margin: 0px;
}

body {
  display: flex;
  flex-direction: column;
  padding: 0px;
  margin: 0px;
}

body .top-nav-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0px;
  padding: 0px;
  height: 64px;
  background-color: #c0c0c0;
}

body .top-nav-bar .robin-emoji-container {
  display: flex;
  align-items: center;
  font-size: 50px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 5px;

  height: 64px;
  overflow: hidden;
}

body .top-nav-bar .link-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 20px;
}

body .top-nav-bar .link-container .link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  height: 35px;
  width: 100px;

  font-family: "Courier New", monospace;
  color: white;

}

.link:hover {
  cursor: pointer;
}

body .top-nav-bar .link-container .gh img {
  height: 35px;
  width: 35px;
}
body .top-nav-bar .link-container .li img {
  height: 35px;
  width: 40px;
}

body .top-nav-bar .link-container .small-border {
  height: 44px;
  border-left-style: solid;
  border-left-width: thin;
  border-left-color: white;
}

body .intro-banner {
  display: flex;
  flex-direction: column;
  margin: 10px;
  height: calc(100vh - 44px);
  overflow: scroll;
}

body .intro-banner .first-line {
  display: flex;
  flex-direction: row;
  align-items: center;
}

body .intro-banner .first-line p {
  font-weight: 100;
  font-size: 25px;
}

body .intro-banner .welcome-message {
  display: none;
  font-weight: 100;
  font-size: 25px;
}

body .intro-banner p {
  margin: 0px;
  font-family: "Arial", sans-serif;
}

body .intro-banner .second-line {
  flex-direction: row;
  align-items: center;
  display: none;
}

body .intro-banner .second-line p {
  font-weight: 100;
  font-size: 25px;
}

body .intro-banner .help-message {
  display: none;

}

body .intro-banner .help-message {
  font-weight: 100;
  font-size: 25px;
}

body .intro-banner .input-lines {
  display: none;
  flex-direction: column;
}

body .intro-banner .input-line {
  display: flex;
  flex-direction: row;
}

body .intro-banner .input-line p {
  font-weight: 100;
  font-size: 25px;
  margin-right: 8px;
}

body .intro-banner .input-line input {
  font-size: 25px;
  font-weight: 100;
  border: none;
  outline: none;
  font-family: "Arial", sans-serif;
}

body .projects-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  background-color: #c0c0c0;
}

body .project-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  height: 45vh;
  padding: 5px;
  box-sizing: border-box;
}

body .project-container {
  display: flex;
  flex-direction: column;
  width: 30%;
  padding: 15px;
  margin: 15px;
  background-color: white;
  border-radius: 10px;
  -webkit-box-shadow: 7px 15px 11px 1px rgba(0,0,0,0.56);
  -moz-box-shadow: 7px 15px 11px 1px rgba(0,0,0,0.56);
  box-shadow: 7px 15px 11px 1px rgba(0,0,0,0.56);
}

body .project-container .project-title {
  font-size: 16pt;
  text-decoration: underline;
  margin-bottom: 5px;
  font-family: "Courier New", monospace;

}

body .project-container a {
  margin-bottom: 5px;
  color: rgba(0, 0, 0, 0.5);
}

body .projects-container h2 {
  color: white;
  margin: 5px;
  font-size: 20pt;
  font-family: "Courier New", monospace;

}

body .about-me-container {
  height: 100vh;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-me-container h2 {
  font-size: 20pt;
  font-family: "Courier New", monospace;
  color: #c0c0c0;
}

.about-me-container p {
  font-size: 20pt;
  font-family: "Courier New", monospace;
  color: #c0c0c0;
}


/* All of the following code for blinking is from: https://codepen.io/ArtemGordinsky/pen/GnLBq
  It blinks a cursor */

.blinking-cursor {
  font-weight: bold;
  font-size: 30px;
  color: #2E3D48;
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}

@keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}

@-moz-keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}

@-webkit-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}

@-ms-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}

@-o-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
