@import url('https://fonts.googleapis.com/css?family=Roboto');


* {
  margin: 0;
}

body {
 background-image: url('../images/keyboard1.jpeg');
}

nav {
  display: inline-block;
  padding: 5px 5px 5px 10px;
  text-align: right;
}

nav a {
  color: Black;
  text-align: right;
}

.welcome-text {
  display: flex;
  justify-content: center;
  width: 100%;
}

.intro {
  background-color: rgba(211, 211, 211, 0.5);
  border-radius: 10px;
  margin-top: 15%;
  padding: 10px;
  text-align: center;
  width: 50%;
}

.bio {
  display: flex;
  justify-content: center;
  width: 100%;
}

.about {
  background-color: rgba(211, 211, 211, 0.5);
  border-radius: 10px;
  margin-top: 15%;
  margin-bottom: 15%;
  padding: 10px;
  text-align: left;
  width: 50%;
}

.portfolio {
  display: flex;
  justify-content: center;
  width: 100%;
}

.projects {
  background-color: rgba(211, 211, 211, 0.5);
  border-radius: 10px;
  margin-top: 15%;
  margin-bottom: 15%;
  padding: 10px;
  width: 50%;
}

.projects a {
  color: MediumBlue;
}

.contact {
  display: flex;
  justify-content: center;
}

.contact-links a {
  color: Black;
}

.contact-links {
  background-color: rgba(211, 211, 211, 0.5);
  border-radius: 10px;
  margin-top: 15%;
  padding: 10px;
  text-align: center;
  width: 50%;
}

@media screen and (min-width: 320px) and (max-width: 699px) {
    .intro, .about, .projects, .contact-links {
      width: 75%;
    }
}
