:root {
  --dark_gray: rgb(138, 138, 138);
  --light-gray: rgb(193, 193, 193);
  --blue: #f0f8ff;
  --pink: rgb(255, 235, 252);
  --white: #f5f5f5;
}

html {
  scroll-behavior: smooth;
}

body {
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

/* Hides display for smaller screen width header */
#media {
  display: none;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: -20px;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 700;
  width: 100%;
  height: 100vh;
  background-image: url("../images/pink_clouds.jpeg");
}

#title {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
}

/* My name in the background */
#title h1 {
  font-size: 250px;
  color: var(--blue);
  margin-top: 0px;
  line-height: 290px;
}


#title aside {
  position: absolute;
  top: 50%;
  left: 70%;
}

/* My picture in the background of the nav */
#title img {
  height: 300px;
  border: 2px solid var(--white);
  border-radius: 50%;
  border-width: 5px;
}

#title img:hover {
  box-shadow: 5px 5px var(--dark_gray);
  height: 325px;
}

/* For the letter a in my name */
nav #a {
  font-size: 625px;
}

/* For the letter m in my name */
nav #m {
  font-size: 550px;
}

/* for all the lists in my html  */
ul {
  list-style-type: none;
}

#right-side .right-nav {
  display: flex;
  padding: 0px;
  margin: auto;
  position: fixed;
  right: 0px;
  z-index: 2;
}

.right-nav li {
  height: 32px;
  margin: 60px 58px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 1s ease;
  font-size: 28px;
  text-align: center;
  background-image: url("../images/pink_clouds.jpeg");
}

.right-nav li a {
  text-decoration: none;
  color: var(--dark_gray);
  -webkit-transition: font-size 3s ease;
}

/*right button underline */
.right-nav li:hover {
  border-bottom: 2px solid var(--dark_gray);
  font-weight: bold;
}

.right-nav li a:hover {
  color: var(--white);
  transition-duration: 2s;
  font-size: 60px;
  text-shadow: 2px 2px var(--dark_gray);
}


#left-side .left-nav {
  display: flex;
  padding: 0px;
  margin: auto;
  position: fixed;
  z-index: 2;
}

.left-nav li {
  height: 32px;
  margin: 60px 58px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 1s ease;
  font-size: 28px;
  text-align: center;
  background-image: url("../images/pink_clouds.jpeg");
}

.left-nav li a {
  text-decoration: none;
  color: var(--dark_gray);
  -webkit-transition: font-size 3s ease;
}

/* left button underline */
.left-nav li:hover {
  border-bottom: 2px solid var(--dark_gray);
  font-weight: bold;
}

.left-nav li a:hover {
  color: var(--white);
  transition-duration: 2s;
  font-size: 60px;
  text-shadow: 2px 2px var(--dark_gray);
}

/* resume download link in the nav  */
.resume {
  position: absolute;
  flex-direction: column;
  width: auto;
  height: 100px;
  text-align: center;
}

/* Main body css */
#scroll-wrapper section {
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0px;
}

/* start of bio section css */
#bio {
  background-color: var(--light-gray);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  height: 0px;
}

#bio h2 {
  margin: 0px;
  font-size: 60px;
  text-transform: uppercase;
  color: var(--pink);
  writing-mode: vertical-lr;
  text-orientation: upright;
}

#bio p {
  margin: 50px;
}

#bio img {
  display: none;
}

/* start of projects section of css */
#projects {
  background-color: var(--blue);
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 0px;

}

#projects h2 {
  margin: 0px;
  font-size: 60px;
  text-transform: uppercase;
  color: var(--light-gray);
  writing-mode: vertical-lr;
  text-orientation: upright;
}

/* first project css */
#project1 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  border: 5px solid var(--dark_gray);
  border-radius: 15%;
  text-align: center;
  margin: 20px;
  padding: 10px;
  justify-content: space-evenly;
  height: 100%;
  width: 75%;
  align-items: center;
}

/* first project picture  */
#projects article img {
  padding: 30px;
  height: 300px;
  border-radius: 15%;
}

#project1 h3 {
  font-size: 50px;
}

#projects ul {
  display: flex;
  flex-wrap: wrap;
  padding: 47px 150px 50px 20px;
  position: relative;
  justify-content: space-evenly;
  height: 100%;
}

#projects li {
  /* flex: 0 0 400px; */
  list-style-type: none;
  border: 5px solid var(--dark_gray);
  border-radius: 15%;
  text-align: center;
  margin: 10px;
}

#projects img {
  padding: 10px;
  border-radius: 15%;
}

/* Start of contact section of css  */
#contact {
  background-color: var(--light-gray);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  height: 0px;
}

#contact h2 {
  margin: 0px;
  font-size: 60px;
  text-transform: uppercase;
  color: var(--pink);
  writing-mode: vertical-lr;
  text-orientation: upright;
}

#contact ul {
  display: flex;
  padding: 47px 150px 50px 20px;
  position: relative;
  justify-content: space-evenly;
  height: 100%;
  flex-wrap: wrap;
}

#contact li {
  display: flex;
  list-style-type: none;
  border: 5px solid var(--dark_gray);
  border-radius: 15%;
  text-align: center;
  margin: 10px;
  align-items: center;
  padding: 10px;
  flex-direction: column;
}

#contact img {
  padding: 10px;
  height: 75px;
}

@media only screen and (max-width: 992px) {

  /* hides the big screen header */
  header {
    display: none;
  }

  /* start of nav bar css  */
  #media {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  #media h1 {
    color: var(--dark_gray);
    font-size: 30px;
    text-transform: uppercase;
  }

  #media nav {
    width: 100%;
    background-image: url("../images/pink_clouds.jpeg");
    position: fixed;
    z-index: 1;
  }

  #media ul {
    display: flex;
    flex-direction: row;
    padding: 0px;
    justify-content: center;
    margin: 5px;
  }

  #media li {
    border: 5px solid var(--white);
    border-radius: 15%;
    margin: 10px;
    padding: 5px;
  }

  #media a {
    text-decoration: none;
    color: var(--dark_gray);
    font-size: 20px;
    text-transform: uppercase;
  }

  main {
    margin-top: 145px;
  }

  /* added my picture to the bio portion */
  #bio img {
    display: flex;
    height: 350px;
  }

  #projects ul {
    display: flex;
    flex-direction: column;
  }

  #project1 {
    width: 100%;
  }

  #projects article img {
    height: 200px;
  }

  #projects img {
    padding: 10px;
    border-radius: 15%;
    height: 100px;
  }

  /* changed the contact viewing to columns  */
  #contact {
    background-color: var(--light-gray);
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    height: 0px;
  }

  #contact h2 {
    margin: 0px;
    font-size: 60px;
    text-transform: uppercase;
    color: var(--pink);
    writing-mode: vertical-lr;
    text-orientation: upright;
  }

  #contact ul {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-evenly;
    height: 100%;
    padding: 47px 20px 50px 20px;

  }

  #contact li {
    flex: 0 0 400px;
    list-style-type: none;
    border: 5px solid var(--dark_gray);
    border-radius: 15%;
    text-align: center;
    margin: 10px;
  }
}

@media only screen and (max-width: 768px) {
  header {
    display: none;
  }

  #media {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  #media h1 {
    color: var(--dark_gray);
    font-size: 30px;
    text-transform: uppercase;
  }

  #media nav {
    width: 100%;
    background-image: url("../images/pink_clouds.jpeg");
    position: fixed;
    z-index: 1;
  }

  #media ul {
    display: flex;
    flex-direction: row;
    padding: 0px;
    justify-content: center;
    margin: 5px;
  }

  #media li {
    border: 5px solid var(--white);
    border-radius: 15%;
    margin: 10px;
    padding: 5px;
  }

  #media a {
    text-decoration: none;
    color: var(--dark_gray);
    font-size: 20px;
    text-transform: uppercase;
  }

  main {
    margin-top: 145px;
  }

  #bio img {
    display: flex;
    height: 270px;
  }

  #project1 {
    width: 100%;
  }

  #projects article img {
    height: 150px;
  }

  #contact {
    background-color: var(--light-gray);
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    height: 0px;
  }

  #contact h2 {
    margin: 0px;
    font-size: 60px;
    text-transform: uppercase;
    color: var(--pink);
    writing-mode: vertical-lr;
    text-orientation: upright;
  }

  #contact ul {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-evenly;
    height: 100%;
    padding: 47px 20px 50px 20px;

  }

  #contact li {
    flex: 0 0 400px;
    list-style-type: none;
    border: 5px solid var(--dark_gray);
    border-radius: 15%;
    text-align: center;
    margin: 10px;
  }

}