header {
  color: white;
  padding: 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 4px;
}

.logo img {
  width: 150px;
}

.navLinks a {
  text-decoration: none;

  color: black;

  background: #ffd7ef;

  padding: 8px 20px;

  border-radius: 4px;

  transition: 0.2s ease;

  display: inline-block;
}

.navLinks a:hover {
  transform: scale(1.08);

  background: #ffb6dc;
}

body {
  font-family: "barlow", sans-serif;
font-weight: 400;
 text-align: center;
  background-color: #000000;
font-style: normal;
  margin: 0;
  padding: 0;
}

#text {
  font-weight: 400;
  font-size: 30px;
}



/*  Jumbled text styling, if ever I want to use it..
.jumbled span {
  display: inline-block;
}
.jumbled span:nth-child(1) {
  transform: rotate(-4deg);
}

.jumbled span:nth-child(2) {
  transform: rotate(2deg);
}

.jumbled span:nth-child(3) {
  transform: rotate(-2deg);
}

.jumbled span:nth-child(4) {
  transform: rotate(5deg);
}

.jumbled span:nth-child(5) {
  transform: rotate(-3deg);
}
  */


button {
  padding: 10px 20px;
  border: none;
  background-color: rgb(43, 4, 82);
  color: white;
  cursor:crosshair;
  border-radius: 5px;
}

button:hover {
  background-color: royalblue;
}

.projectStatement {
  color: white;
}

body {
  background-color: #f6f1e8;

  background-image:
    linear-gradient(to bottom, transparent 31px, #dcdcdc 32px);

  background-size: 100% 32px;
}





.projectCard {
  position: relative;

  width: 300px;
  margin: 100px auto;

  padding: 2rem;

  background: #d8b2f7;

  border: 2px solid #9f5dd4;

   border-radius: 4px 4px 4px 4px;

  box-shadow: 8px 8px 0px  #7c46a8;

  transform: rotate(-1deg);
}

.projectCard {
  background: #d8b2f7;

  transition: 0.3s ease;
}
.projectCard:hover {
  background: #4d2072;
  transform: scale(1.08);
}


.tape {
  position: absolute;

  width: 100px;
  height: 30px; 

  background: rgba(236, 204, 21, 0.639);

  top: -15px;
  left: 50%;

  transform:
    translateX(-50%)
    rotate(-6deg);

  border-left: 1px solid rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.974);

  backdrop-filter: blur(2px);
}