/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
body {
    background-color: rgba(226, 179, 245, 0.8);
  }


#intro h1 {
    color: rgba(177, 14, 244, 0.8);
    text-align: center;
  }

#intro p, #tester p {
  
  color: black;
  font-family: Sans-Serif;
  text-align: center;
  margin-bottom: 100px;
}

p.project {
    
  color: black;
  text-align: center;  
      
  }
  
h1.project {
  color: black;
  text-align: center;  
  }
  
p.left {
  text-align: left;
  margin-left: 150px;
  margin-right: 1000px;
  }

p.right {
  text-align: right;
  margin-left: 1000px;
  margin-right: 150px;
  }
  
  h1.left {
    text-align: center;
    
    }
    h1.right {
    text-align: center;
    
    }
    
    
.bold {
  font-weight: bold;
  }

.projectlist {
  text-align: left;
  position: relative;
  margin-left: 300px;
  }
  
a.projectlink {
  
  font-family: Times;
  font-size: 50px;
  padding-bottom: 25px;
  color: #fffae5;
  }

a.projectlink:hover {
  color:#ffe085;
  }
a.hypeylink:link {
  color: blue;
  }
a.hypeylink:visited {
  color: green;
  }
a.hypeylink:hover {
  color: purple;
  text-decoration: underline overline;
  }
  
  .navigation {
  margin-top: 200px;
  margin-right: 100px;
  margin-left: 1650px;
  position: fixed;
  border: 0;
  line-height: 1;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  border-radius: 10px;
  background-color: rgba(113, 2, 159, 0.8);
  background-image: linear-gradient(
    to top left,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.2) 30%,
    rgba(0, 0, 0, 0)
  );
  box-shadow:
    inset 2px 2px 3px rgba(255, 255, 255, 0.6),
    inset -2px -2px 3px rgba(0, 0, 0, 0.6);
}

.subpage-link:hover {
  background-color: rgba(228, 212, 154, 0.8);
 
}

.subpage-link {
  color: white;
  }

.subpage-link:active {
  box-shadow:
    inset -2px -2px 3px rgba(255, 255, 255, 0.6),
    inset 2px 2px 3px rgba(0, 0, 0, 0.6);
     color: white;
}

#raftchick {
  position: relative;
  left: 1100px;
  
  }
  
#ktc {
  background-image: linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  
  }
    