/* homepage */

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

.homepage-background {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.287)), url(images/grainy-background.jpg);
  background-size: 100%;
  height: 820px;
}

.portrait {
  position: absolute;
  height: 300px;
  width: 300px;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: none;
  border-radius: 50%;
  border: rgb(165, 0, 0) solid 5px;
}



img {
  width: 100%;
  height: auto;
  filter: opacity(100%) brightness(150%) grayscale(50%);
}

header {
  position: fixed;
  height: 40px;
  background-color: #a8b875;
  color: red;
  z-index: 2;
  width: 100%;
  top: 0;
  left: 0;
  filter: grayscale(10%);
}

.header-line {
 background-color: #a8b875;
 height: 9px;
 border-color: white;
}

.header-stars {
  display: flex;
  justify-content: space-evenly;
}

.star {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  width: 20px;
  height: 20px;
  background-color: white;
  display: inline-block;
}

.header-line2 {
 border: none;
 color: white;
 background-color: white;
 height: 1px;
}

.header-banner-container {
  display: flex;
  justify-content: center;
}

.header-banner {
  width: 200px;
  padding: 0px;
  margin: 0px;
  position: fixed;
  top: 0px;
  z-index: 2;
  filter: none;
}

.homepage-banner-container2 {
  display: flex;
  justify-content: center;
}

.portfolio-banner {
  position: absolute;
  height: auto;
  width: 30%;
  max-width: 400px;
  bottom: 100px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.tickets-container {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  bottom: 20%;
  gap: 5%;
  padding: 0px;
  height: 10%;
  width: 50%;
}

.learning-outcomes {
  height: auto;
  width: 100%;
  max-width: 400px;
}

.lo-button {
  background-color: transparent;
  background: url(images/learning-outcomes-ticket.svg);
  border: none;
}

.lo-button:hover {
  border: none;
  background-color: #70131C;
  cursor: pointer;
  background-color: transparent;
}

.my-projects {
  height: auto;
  width: 30%;
  z-index: 2;
}

.sunburst {
  position: absolute;
  z-index: 1;
  width: 30vw;
  height: 30vw;
  top: -9%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #70131C;
  clip-path: polygon(50% 50%, 100% 55%, 100% 45%, 50% 50%, 97% 34%, 93% 25%, 50% 50%, 
  89% 18%, 81% 10%, 50% 50%, 74% 6%, 65% 3%, 50% 50%, 55% 0, 45% 0, 50% 50%, 35% 2%, 
  26% 6%, 50% 50%, 19% 11%, 11% 18%, 50% 50%, 7% 25%, 3% 34%, 50% 50%, 0 45%, 0 55%, 
  50% 50%, 3% 64%, 7% 75%, 50% 50%, 11% 82%, 19% 89%, 50% 50%, 26% 94%, 35% 98%, 50% 50%, 
  45% 100%, 55% 100%, 50% 50%, 65% 98%, 74% 94%, 50% 50%, 81% 89%, 89% 82%, 50% 50%, 
  93% 75%, 97% 64%, 50% 50%);
  opacity: 0.2;
  animation: sunburst 60s linear infinite;
  filter: blur(300px);
}

@keyframes sunburst {
  from {
      transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
      transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Disable animation for users with reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .sunburst {
      animation: none;
      filter: blur(50px);
  }
}



.scroll-down-text {
  margin: 0;
  padding: 0;
  font-size: clamp(14px, 2vw, 18px);
}

.left-line, .right-line {
  width: 40vw;
  height: 2px;
  border: #70131C solid 1px;
  margin-top: 15px;
}



.green-background {
  position: absolute;
  background-color: #a8b875;
  height: 30vh;
  width: 50vw;
  max-width: 600px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  outline: white solid 2px;
  outline-offset: -10px;
}

.about-me-banner-container {
  display: flex;
  justify-content: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.about-me-banner {
  width: min(200px, 50vw);
  height: 22vh;
  clip-path: polygon(0 0, 100% 0%, 100% 20%, 50% 40%, 0 20%);
  background-color: #70131C;
  color: white;
  display: flex;
  justify-content: center;
}





.button1 {
  width: 130px;
  top: 0%;
  left: 15%;
  position: absolute;
  background-color: #70131C;
  color: white;
  border: none;
  outline: white solid 1px;
  outline-offset: -5px;
  padding: 10px 20px;
  text-align: center;
  cursor: pointer;
}

.projects-button {
  position: absolute;
  height: 80px;
  width: 230px;
  top: -1px;
  left: 95px;
  cursor: pointer;
}

.outcomes-button {
  position: absolute;
  height: 70px;
  width: 218px;
  top: 54px;
  left: 101px;
  cursor: pointer;
}

.home-button {
  position: absolute;
  height: 102px;
  width: 230px;
  top: 118px;
  left: 95px;
  cursor: pointer;
}

.nx-btn {
  
  width: 130px;
}

.button-container {
  width: 100px;
}

.button2 {
  width: 130px;
  top: 81%;
  left: 15%;
  position: absolute;
  background-color: #70131C;
  color: white;
  border: none;
  outline: white solid 1px;
  outline-offset: -5px;
  padding: 10px 20px;
  text-align: center;
  cursor: pointer;
}

.button3 {
  width: 130px;
  top: 170%;
  left: 15%;
  position: absolute;
  background-color: #70131C;
  color: white;
  border: 1px solid white;
  border-bottom:0px;
  padding: 10px 20px;
  text-align: center;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 105%); /* Adjusted bottom area */
}

.button3::after{
  content:"";
  width:150px;
  border-bottom:1px solid white;
  position:absolute;
  bottom:0px;
  left:0px;
  transform-origin:left bottom;
  transform: rotate(-10deg);
}

.paragraph-title {
  font-size: 25px;
}

/*.text {
  position: absolute;
  padding-top: 70px;
  padding-left: 20px;
}*/

/* homepage */



/* Learning outcomes page */

.learning-outcomes-body {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.287)), url(images/grainy-background.jpg);
  background-size: 100%;
  height: 820px;
}

.learning-outcomes-container {
  display: flex;
  justify-content: space-between;
  padding: 0px;
  margin: 0px;
}

.interactive-media-products {
  width: 16vw;
  height: 17vh;
  z-index: 1;
  position: absolute;
  top: 25%;
  left: 10%;
}

.interactive-button:hover {
  cursor: pointer;
}



.dev-and-version-control {
  width: 16vw;
  height: 17vh;
  z-index: 1;
  position: absolute;
  top: 25%;
  left: 42.5%;
}

.development-button:hover {
  cursor: pointer;
}



.iterative-design {
  width: 16vw;
  height: 17vh;
  z-index: 1;
  position: absolute;
  top: 25%;
  right: 10%;
}

.iterative-design-button:hover {
  cursor: pointer;
}



.professional-standard {
  width: 16vw;
  height: 17vh;
  z-index: 1;
  position: absolute;
  top: 60%;
  left: 25%;
}


.professional-standard-button:hover {
  cursor: pointer;
}



.personal-leadership {
  width: 16vw;
  height: 17vh;
  z-index: 1;
  position: absolute;
  top: 60%;
  right: 25%;
}



.personal-leadership:hover {
  cursor: pointer
}








/* interactive media products page */

.interactive-media-products-background {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.287)), url(images/grainy-background.jpg);
  background-size: 100%;
  height: 3000px;
}

.communication, .iterative, .core-values {
  margin-top: 70px;
  padding: 0px;
  font-size: 50px;
  display: flex;
  justify-content: center;
  font-family: "Rye";
}

.connecting-to-lo {
  margin-top: 40px;
  padding: 0px;
  font-size: 50px;
  display: flex;
  justify-content: center;
  font-family: "Rye";
}

.media-container {
  display: flex;
  justify-content: space-around;
  box-sizing: border-box;
  height: 0px;
  margin-left: 30px;
  margin-bottom: 100px;
}

.paragraph-container {
  width: 900px;
  padding: 0px;
  margin: 0px;
  font-size: 20px;
  font-family: "Rye";
}

.paragraph1-container {
  width: 900px;
  margin-left: 90px;
  padding: 0px;
  margin-bottom: 100px;
  font-family: "Rye";
}

.paragraph {
  margin-bottom: 10px;
}

.paragraph1 {
  margin-top: 30px;
  font-size: 20px;
  font-family: "Rye";
}

.figma-prototype, .moodboard, .picoo-prototype, .teacher-feedback {
  filter: none;
  margin-top: 50px;
}

.prototype-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 400px;
  flex-wrap: wrap;
}

.media-page-line1 {
  display: flex;
  justify-content: space-around;
  margin-top: 295px;
}

.media-page-line2 {
  display: flex;
  justify-content: space-around;
  margin-top: 205px;
}

.media-page-line3 {
  display: flex;
  justify-content: space-around;
  margin-top: 278px;
}

.media-page-line4 {
  display: flex;
  justify-content: space-around;
  margin-top: 130px;
}

.media-page-line5 {
  display: flex;
  justify-content: space-around;
  margin-top: 178px;
}

.media-article2-container {
  width: 900px;
  margin-left: 90px;
  padding: 0px;
}

.picoo-prototype-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 450px;
  flex-wrap: wrap;
}

p {
  font-family: "Rye";
  font-size: 20px;
  margin-top: 30px;
}

.reflection {
  font-size: 30px;
}

.banner-buttons-old {
  filter: none;
  margin-top: 50px;
  width: 300px;
}

.banner-buttons-new {
  filter: none;
  margin-top: 20px;
  width: 300px;
}

.material-io {
  filter: none;
  margin-top: 100px;
  width: 400px;
}




/* interactive media products page */




/* development and version control page */

.development-background {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.287)), url(images/grainy-background.jpg);
  background-size: 100%;
  height: 3000px;
}

.version-control, .frontend-development {
  margin-top: 150px;
  padding: 0px;
  font-size: 50px;
  display: flex;
  justify-content: center;
  font-family: "Rye";
}

.development-container, .frontend-container {
  display: flex;
  justify-content: space-around;
  margin-top: 100px;
  box-sizing: border-box;
  height: 80px;
}

.commits-image-container, .freecodecamp-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 400px;
  flex-wrap: wrap;
}

.commits, .freecodecamp {
  filter: none;
  margin-top: -50px;
}

.heralink {
  margin-top: 50px;
  margin-left: 90px;
}

.dev-page-line {
  display: flex;
  justify-content: space-around;
  margin-top: 365px;
}

.dev-page-line2 {
  display: flex;
  justify-content: space-around;
  margin-top: 205px;
}

.dev-page-line3 {
  display: flex;
  justify-content: space-around;
  margin-top: 255px;
}

.dev-page-line4 {
  display: flex;
  justify-content: space-around;
  margin-top: 228px;
}

.dev-page-line5 {
  display: flex;
  justify-content: space-around;
  margin-top: 155px;
}

.dev-page-line6 {
  display: flex;
  justify-content: space-around;
  margin-top: 255px;
}

.dev-page-line7 {
  display: flex;
  justify-content: space-around;
  margin-top: 130px;
}

.freecodecamp-image1 {
  filter: none;
  margin-top: 50px;
  width: 300px;
}

.freecodecamp-image2 {
  filter: none;
  margin-top: 20px;
  width: 300px;
}

.picoo-homepage {
  filter: none;
  margin-top: 20px;
  width: 430px;
  height: 300px;
}

.picoo-preview {
  filter: none;
  margin-top: 20px;
  width: 430px;
  height: 300px;
}

.bootstrap-header {
  filter: none;
  margin-top: 20px;
  width: 400px;
}

.grid-layout {
  filter: none;
  margin-top: 20px;
  width: 440px;
}

.responsive-layout {
  filter: none;
  margin-top: 20px;
  width: 220px;
}

.tictactoe-board {
  filter: none;
  margin-top: 20px;
  width: 220px;
}

.line-star {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  width: 30px;
  height: 30px;
  background-color: black;
  display: inline-block;
}

.paragraph2 {
  margin-top: 30px;
  font-family: "Rye";
  font-size: 20px;
}




/* development and version control page */


/* iterative design page */

.iterative-design-background {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.287)), url(images/grainy-background.jpg);
  background-size: 100%;
  height: 3000px;
}

.iterative-images-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 480px;
  flex-wrap: wrap;
}

.paragraph3 {
  margin-top: 40px;
  font-size: 20px;
}

.iterative-design-page-line {
  display: flex;
  justify-content: space-around;
  margin-top: 194px;
}

.iterative-design-page-line2 {
  display: flex;
  justify-content: space-around;
  margin-top: 305px;
}

.iterative-design-page-line3 {
  display: flex;
  justify-content: space-around;
  margin-top: 230px;
}

.iterative-design-page-line4 {
  display: flex;
  justify-content: space-around;
  margin-top: 353px;
}

.iterative-design-page-line5 {
  display: flex;
  justify-content: space-around;
  margin-top: 255px;
}

.iterative-design-page-line6 {
  display: flex;
  justify-content: space-around;
  margin-top: 230px;
}

.adobe-moodboard {
  filter: none;
  margin-top: 20px;
  width: 300px;
}

.adobe-moodboard2 {
  filter: none;
  margin-top: 20px;
  width: 200px;
}

.adobe-poster {
  filter: none;
  margin-top: 20px;
  width: 200px;
}

.owen-bryce-image {
  filter: none;
  margin-top: 40px;
  width: 400px;
}

.owen-bryce-prototype {
  filter: none;
  margin-top: 20px;
  width: 400px;
}

/* iterative design page */






/* professional standard page */

.professional-standard-background {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.287)), url(images/grainy-background.jpg);
  background-size: 100%;
  height: 3000px;
}

.brand-guide-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 400px;
  flex-wrap: wrap;
}

.brand-guide-image1 {
  filter: none;
  margin-top: 50px;
  width: 300px;
}

.brand-guide-image2 {
  filter: none;
  margin-top: 20px;
  width: 400px;
}

.brand-guide-image3 {
  filter: none;
  margin-top: 20px;
  width: 200px;
}

.interview-transcript {
  filter: none;
  margin-top: 20px;
  width: 430px;
  height: 500px;
}

.presentation {
  filter: none;
  margin-top: 100px;
  width: 400px;
}

.picoo-script {
  filter: none;
  margin-top: 20px;
  width: 800px;
}

.professional-standard-page-line {
  display: flex;
  justify-content: space-around;
  margin-top: 195px;
}

.professional-standard-page-line2 {
  display: flex;
  justify-content: space-around;
  margin-top: 254px;
}

.professional-standard-page-line3 {
  display: flex;
  justify-content: space-around;
  margin-top: -103px;
}

.professional-standard-page-line4 {
  display: flex;
  justify-content: space-around;
  margin-top: 842px;
}

.professional-standard-page-line5 {
  display: flex;
  justify-content: space-around;
  margin-top: 278px;
}

.professional-standard-page-line6 {
  display: flex;
  justify-content: space-around;
  margin-top: -82px;
}

.professional-standard-page-line7 {
  display: flex;
  justify-content: space-around;
  margin-top: 846px;
}

.professional-standard-page-line8 {
  display: flex;
  justify-content: space-around;
  margin-top: 255px;
}

.professional-standard-page-line9 {
  display: flex;
  justify-content: space-around;
  margin-top: -32px;
}

.professional-standard-page-line10 {
  display: flex;
  justify-content: space-around;
  margin-top: 845px;
}

.professional-standard-page-line11 {
  display: flex;
  justify-content: space-around;
  margin-top: 278px;
}

.professional-standard-proof {
  
  justify-content: space-around;
  box-sizing: border-box;
  height: 0px;
  margin-left: 30px;
  margin-bottom: 100px
}

.picoo-slides1 {
  display: flex;
  filter: none;
  margin-top: 20px;
  width: 400px;
}

.owen-bryce-fonts {
  display: flex;
  filter: none;
  margin-top: 20px;
  width: 500px;
}

.picoo-script {
  height: 500px;
  width: auto;
}

/* professional standard page */






/* personal leadership page */

.personal-leadership-background {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.287)), url(images/grainy-background.jpg);
  background-size: 100%;
  height: 3000px;
}

.personal-main-container {
  display: flex;
  justify-content: center;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 360px);
  gap: 50px;
  width: 100%;
  height: 770px;
  max-width: 100%;
  margin: 30px;
}

.grid-item {
  color: black;
  display: flex;
  justify-content: left;
  align-items: center;
  font-size: 18px;
  font-family: "Rye";
  border-radius: 8px;
  flex-direction: column;
  flex-wrap: wrap;
}

.core-values-text {
  word-wrap: break-word;
  margin-bottom: 10px;
  padding: 10px;
}

.communication-image {
  height: 90px;
  width: auto;
}

.attendance {
  filter: none;
  height: 180px;
  width: auto;
}

.personal-leadership-page-line {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.personal-leadership-page-line2 {
  display: flex;
  justify-content: space-around;
  margin-top: 16px;
}

.personal-leadership-page-line3 {
  display: flex;
  justify-content: space-around;
  margin-top: 155px;
}

.personal-leadership-page-line4 {
  display: flex;
  justify-content: space-around;
  margin-top: 155px;
}

.ticket-image{
  height: 100px;
  width: auto;
  filter: none;
  margin-top: 20px;
}

.banner-image {
  height: 100px;
  width: auto;
  filter: none;
}

.spinning-sun {
  height: 100px;
  width: auto;
  filter: none;
}

.feedback-image {
  height: 100px;
  width: auto;
  filter: none;
  margin-top: 100px;
}

.photography-image {

  filter: none;
  margin-top: 20px;
}


/* personal leadership page */






/* branding page */

.branding-page-line {
  display: flex;
  justify-content: space-around;
  margin-top: 168px;
}

.branding-page-line2 {
  display: flex;
  justify-content: space-around;
  margin-top: 345px;
}

.branding-background {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.287)), url(images/grainy-background.jpg);
  background-size: 100%;
  height: 1800px;
}

/* branding page */







/* create that ux */

.create-that-ux-background {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.287)), url(images/grainy-background.jpg);
  background-size: 100%;
  height: 1800px;
}

.createthatux-page-line {
  display: flex;
  justify-content: space-around;
  margin-top: 143px;
}

.createthatux-page-line2 {
  display: flex;
  justify-content: space-around;
  margin-top: 170px;
}

.picoo-persona {
  filter: none;
  margin-top: 10px;
}

.picoo-prototype {
  filter: none;
  margin-top: 10px;
  height: 500px;
  width: auto;
}
/* create that ux */




/* Picoo dev */

.picoo-background {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.287)), url(images/grainy-background.jpg);
  background-size: 100%;
  height: 2000px;
}

.picoo-page-line {
  display: flex;
  justify-content: space-around;
  margin-top: 268px;
}

.picoo-dev-page-line2 {
  display: flex;
  justify-content: space-around;
  margin-top: 295px;
}

.picoo-commits {
  filter: none;
  margin-top: 200px;
  width: 440px;
}

/* Picoo dev */


.projectx-background {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.287)), url(images/grainy-background.jpg);
  background-size: 100%;
  height: -320px;
}

.projectx-page-line {
  display: flex;
  justify-content: space-around;
  margin-top: -110px;
}