/* Reset default styles */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');
body,
h1 {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 20px;
}

.title {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 1200px;
}

.participant {
  background-color: white;
  border: 2px solid #ccc;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  height: 150px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Hover effect */
.participant:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Default placeholder image */
.profile-photo {
  background-image: url("../images/placeholder.jpg");
  background-size: cover;
  background-position: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 2px solid white;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/* Default name display */
.participant-name::before {
  content: attr(data-name);
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  color: #555;
}

/* Default quote styling */
.participant-quote::before {
  content: attr(data-quote);
  font-style: italic;
  font-size: 12px;
  color: #777;
  text-align: center;
  margin-top: 5px;
  display: block;
}

/* 🤗 Customization section for each participant */
#participant-1 {
  background-image: url("../images/aespabg.jpg");
  border: 2px solid cyan;
}

#participant-1 .profile-photo {
  background-image: url("../images/anawat-pro.jpg");
  border: 2px solid cyan;
}

#participant-1 .participant-name::before {
  content: "Anawat (กัน)";
  color: #ff8f97;
}

#participant-1 .participant-quote::before {
  content: "What goes around comes around 💫";
  color: #e9c063;
}

/* Next participant */
#participant-2 {
  background-color: #fafafa;
  border: 3px solid #b8860b;
  box-shadow: 0 4px 10px rgba(184, 134, 11, 0.4);
  border-radius: 15px;
}

#participant-2 .profile-photo {
  background-image: url("../images/arunya-profile.png");
  border: 3px solid #e5d1b7;
}

#participant-2 .participant-name::before {
  content: "Arunya (May)";
}

#participant-2 .participant-quote::before {
  content: "🎄Programing teaches you how to think🎄 (cr.Bill Gates)";
}

/* Next participant */
#participant-3 {
  background: rgb(238, 174, 202);
  background: radial-gradient(circle, rgba(238, 174, 202, 0.9220063025210083) 0%, rgba(148, 233, 218, 0.9023984593837535) 100%);
  border-color: rgb(235, 234, 219);
}

#participant-3 .profile-photo {
  background-image: url("../images/blue_profile.jpg");
  border-color: #d670d16c;
}

#participant-3 .participant-name::before {
  content: "Aticha (Blue)";
  font-weight: 700;
  background-color: #f0f0f0c0;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}

#participant-3 .participant-quote::before {
  content: "Anything can happen⭐";
  font-weight: 600;
  background-color: #f0f0f0c0;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  text-align: center;
}

/* Next participant */
#participant-4 {
  background-image: url(https://www.hungryones.com/wp-content/uploads/2023/06/2013.3.29.forest.gump_._2431.1-scaled.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

#participant-4 .profile-photo {
  background-image: url("../images/forest_tong.jpg");
}

#participant-4 .participant-name::before {
  content: "Chirayuth Konghin";
  color: #121212;
  background-color: #e33e3e;
  padding: 3px;
  border-radius: 5px;
  filter: drop-shadow(1px 1px 1px rgb(239, 232, 232));
}

#participant-4 .participant-quote::before {
  content: "Run! Code ... Run !!!";
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
}

/* Next participant */
#participant-5 {
  background-color: hsla(203, 30%, 80%, 0.5);
  border-color: transparent;
  border: 2px solid hsla(203, 100%, 21%, 0.25);
  transition: all 150ms;
}
#participant-5:hover {
  background-color: hsla(203, 100%, 7%, 0.5);
  border-color: hsla(203, 100%, 7%, 1);
  border-radius: 4px;
  box-shadow: 0 2px 8px  hsla(204, 100%, 10%, 0.75);
}

#participant-5 .profile-photo {
  background-image: url("../images/05_chin-profile.jpg");
  border-color: hsla(203, 40%, 40%, 1);
  filter: grayscale(0.4) drop-shadow(0 1px 6px  hsla(204, 100%, 90%, 1));
  transition: all 200ms;
}

#participant-5:hover .profile-photo {
  border-color: hsla(204, 100%, 95%, 1);
  filter: drop-shadow(0 1px 6px  hsla(204, 100%, 90%, 1));
}

#participant-5 .participant-name::before {
  content: "Chollasit (Chin)";
  transition: color 300ms;
}
#participant-5:hover .participant-name::before {
  color: hsla(204, 100%, 100%, 1);
  text-shadow: 0 1px 1px hsla(204, 100%, 10%, 0.75);
}

#participant-5 .participant-quote::before {
  content: 'It works on my machine...';
  transition: color 400ms;
}
#participant-5:hover .participant-quote::before {
  color: hsla(204, 100%, 96.5%, 0.95);
  text-shadow: 0 2px 0.5em hsla(204, 100%, 90%, 0.95);
}

/* Next participant */
#participant-6 {}

#participant-6 .profile-photo {
  background-image: url("../images/participant-6.jpg");
}

#participant-6 .participant-name::before {
  content: "Your Name Here";
}

#participant-6 .participant-quote::before {}

/* Next participant */
#participant-7 {
  background-image: url(https://today-obs.line-scdn.net/0hdGvxMVhoO2hLASwXgqpEP3NXNxl4ZyFhaTNwWmgFMVhmLXo-cTBoCz5SZkRvMys7azUjCjxVYlxhZC49Jw/w644);
  background-size: cover;
}

#participant-7 .profile-photo {
  background-image: url("https://i.pinimg.com/736x/b8/c7/f2/b8c7f2f39c28ae20a95ef631cdb6d20a.jpg");
}

#participant-7 .participant-name::before {
  content: "Jakapat Pattanasiri";
  font-weight: bold;
  color: rgb(255, 242, 0);
}

#participant-7 .participant-quote::before {
  content: "No enemy, but if you have one, it's yourself.";
  font-weight: bold;
  color: rgb(0, 0, 0);
}

#participant-7 .participant-quote::before {}

/* Next participant */
#participant-8 {
  background-color: #f4f1ec;
  border: 2px solid #d0b89f;
  box-shadow: 0 4px 8px rgba(208, 184, 159, 0.2);
  border-radius: 15px;
}

#participant-8 .profile-photo {
  background-image: url("../images/08-tob-profile.jpg");
  border: 4px solid #d0b89f;
}

#participant-8 .participant-name::before {
  content: "Tob(ต๊อบ)";
  color: #6a4e34;
}

#participant-8 .participant-quote::before {
  content: "I love my dogs 🐶 and aspire to be a quality-of-life developer 💻✨.";
  color: #6a4e34;
  font-size: 11px;
}

/* Next participant */
#participant-9 {
  background-image: linear-gradient(to right bottom, #051937, #004d7a, #008793, #00bf72, #a8eb12);
  background-size: 200% 200%;
  background-position: 0 50%;
  border: none;
  outline: none;
  transition: all 0.3s ease;
  animation: backgroundShift 3s linear infinite alternate;
}

#participant-9:hover {
  border-radius: 0;
  border: none;
}

@keyframes backgroundShift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

#participant-9 .profile-photo {
  background: url("../images/JHA-09.jpg") center/cover no-repeat;
}

#participant-9 .participant-name::before {
  content: "JHA J.";
  color: #FFF;
}

#participant-9 .participant-quote::before {
  content: 'Rise and slay. Try again..';
  font-size: 0.7rem;
  color: #FFF;
  border-right: 2px solid #FFF;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  width: 0;
  opacity: 0;
  animation: textTyping 5s steps(24) 1s forwards, blinkCursor 0.75s step-end infinite;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes textTyping {
  0% {
    width: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes blinkCursor {
  50% {
    border-color: transparent;
  }
}

#participant-9 .participant-quote::after {
  content: "";
  animation: textErase 4s steps(24) 5s forwards;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes textErase {
  0% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}

/* Next participant */
#participant-10 {
  background: linear-gradient(to right, #e7bc45, #526daa);
  border: #504c4c solid 1px;
  box-shadow: 1.5px 1.5px 2.5px #3a3737, 2.5px 2.5px 4.5px #2a2828;
}

#participant-10 .profile-photo {
  background-image: url("https://ca.slack-edge.com/T08AK72NJM6-U08B0KB6E5P-29f774fc9fdc-512");
}

#participant-10 .participant-name::before {
  content: "Ling(หลิง)";
  color: #EDF3FE;
  text-shadow: #2a2828 2px 2px 2px;

}

#participant-10 .participant-quote::before {
  content: "Don't give up easily, since you'll end up starting again anyway.";
  color: #EDF3FE;
  text-shadow: #2a2828 1px 1px 5px;
}

/* Next participant */
#participant-11 {}

#participant-11 .profile-photo {
  background-image: url("../images/KTP.jpg");
  border: #111 solid 2px;
}

#participant-11 .participant-name::before {
  content: "Kantaphan (Free)";
}

#participant-11 .participant-quote::before {
  content: "Que sera sera";
  color: #e9c456;}

/* Next participant */
#participant-12 {
  border: solid 3px #ffffff;
  background-image: url(https://i.postimg.cc/kXj8Xsg2/Cloth-Scene.gif);
  filter: drop-shadow(0 0 0.75rem #530079);
}

#participant-12 .profile-photo {
  background-image: url(https://i.postimg.cc/C56DMyyL/4.png);
}

#participant-12 .participant-name::before {
  content: "Khomgrit(ต้น)";
  color: #fcfcfc;
  background-color: #530079;
  padding: 7px;
  border-radius: 3rem;
}

#participant-12 .participant-quote::before {
  content: "Stay humble ";
  color: #ffffff;
  font-size: medium;
  font-weight: 900;
  margin-top: .5rem;
  padding: 7px;
  background-color: #530079;
  border-radius: 3rem;
}

/* Next participant */
#participant-13 {
  background-image: url("https://media.licdn.com/dms/image/v2/D5603AQGbduRoMI2m1A/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1719571399096?e=1745452800&v=beta&t=tL9TGhGSVHCp6v1cvhgOrlBGEdcb6jDvhGVyrYBIqdM");
  background-position: center;
  background-size: cover;
  position: relative;
}

#participant-13 .profile-photo {
  border: none;
}

#participant-13 .participant-name::before {
  outline: 1px solid salmon;
  position: absolute;
  width: 90%;
  padding: 0.2rem;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  content: "Kittipan (Kob/กบ)";
  color: #f4f4f4;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  background-color: #111;
}

#participant-13 .participant-quote::before {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  content: "Remember the 'why' that brought you here.";
  font-size: 0.5rem;
  color: #8d8d8d;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

/* Next participant */
#participant-14 {
  background-image: url("../images/bass-bg.png");
  background-position: center;
  background-size: cover;
  position: 'relative';
  border: dodgerblue solid 2px;
}

#participant-14 .profile-photo {
  background-image: url("../images/bass-profile.jpeg");
  outline: crimson solid 3px;
  box-shadow: 4px 4px 3px #333;
}

#participant-14 .participant-name::before {
  content: "Kriangkai (Bass/เบส)";
  color: gold;
  text-shadow: 2px 2px 2px #333;
}

#participant-14 .participant-quote::before {
  color: rgb(41, 233, 80);
  content: "Every experience will make you grow up";
  text-shadow: 2px 2px 1px #333;
}

/* Next participant */
#participant-15 {
  background-color: #9a97c6;
  border: 3px solid #00796b;
  box-shadow: 0 4px 10px rgba(0, 121, 107, 0.4);
  border-radius: 15px;
}

#participant-15 .profile-photo {
  background-image: url("../images/nutpic.jpg");
  outline: rgb(143, 63, 63) solid;
  border: 0px;
}

#participant-15 .participant-name::before {
  content: "Nuttnon(Nut)";
  color: #ddd9d3;
}

#participant-15 .participant-quote::before {
  content: "keep moving forward,every step brings you closer to sucsess";
  color: #ddd9d3;
}

#participant-15 .participant-quote::before {}

/* Next participant */
#participant-16 {
  background: linear-gradient(to top, rgb(255, 250, 250), rgb(255, 216, 216));
  background-color: #f8e6e6;
  border: 3px solid #921d09;
  border-bottom-color: #df035f;
  border-bottom-style: dashed;
  box-shadow: 0 4px 10px rgba(0, 121, 107, 0.4);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

#participant-16 .profile-photo {
  background-image: url("../images/jsd_orachun_profile.jpg");
}

#participant-16 .participant-name::before {
  content: "Orachun (ชี้ค)";
}

#participant-16 .participant-quote::before {
  content: "Knowledge is The Endless journey.🎠";
}

#participant-16 .participant-quote::before {}

/* Next participant */
#participant-17 {
  background-image: url(../images/oraya-bg.svg);
  border: 3px solid rgba(39, 59, 20, 0.759);
  box-shadow: 0 5px 10px rgb(34, 34, 33);
  border-radius: 15px;
}

#participant-17 .profile-photo {
  background-image: url("../images/oraya-profile.jpg");
}

#participant-17 .participant-name::before {
  content: "Oraya (Aliz/อลิช)";
  color: #1a5048;
}

#participant-17 .participant-quote::before {
  content: "🚀 Never stop learning, because life never stops teaching.";
  color: #00796b;
}

/* Next participant */
#participant-18 {
	background: repeating-radial-gradient(yellow blue 20%
	);
	border: 3px; 

	border-radius: 15px;
	
}

#participant-18 .profile-photo {
  background-image: url("../images/Toeyupdate.jpg");
 
}

#participant-18 .participant-name::before {
  content: "Phaothai chokbundit Toey";
}

#participant-18 .participant-quote::before {
  content: "สู้ๆนะครับ";
}

/* Next participant */
#participant-19 {
  background-image: radial-gradient(circle,yellow,green);
  border: 3px solid greenyellow;
  box-shadow: 0 4px 10px rgba(0, 121, 107, 0.4);
  border-radius: 15px;
}

#participant-19 .profile-photo {
  background-image: url("../images/piyaphon-profile.jpg");
}

#participant-19 .participant-name::before {
  color: black;
  content: "Piyaphon Waharak";
}

#participant-19 .participant-quote::before {
  color: black;
  content:"ทำ 100% เท่าที่รู้ ไม่ต้องรอให้รู้ 100% แล้วลงมือทำ";
}

/* Next participant */
#participant-20 {
  background-color: #900C3F;
  border: solid 5px #C70039;
}

#participant-20 .profile-photo {
  background-image: url("/images/เสือ.jpg");
}

#participant-20 .participant-name::before {
  content: "pongharit kitudom";
  color: #FFC300;
}

#participant-20 .participant-quote::before {
  content: "🚀 ถ้าเธอชอบคนเก่ง เราเขียน Hello World เป็นนะ";
  color: #DAF7A6;
}

/* Next participant */
#participant-21 {
  background: linear-gradient(135deg,#432b10, brown);
 
}

#participant-21 .profile-photo {
  background-image: url("../images/21_mate.jpg");
}

#participant-21 .participant-name::before {
  content: "Mate ";
  color: white;
}

#participant-21 .participant-quote::before {
  content: "Happy Mate! 😎";
  color: white;
}

/* Next participant */
#participant-22 {
	background-image: linear-gradient(to bottom,#3674B5, #D1F8EF);
	border: solid 1px #3674B5;
}

#participant-22 .profile-photo {
	background-image: url("../images/sanyalak-profile.jpg");
}

#participant-22 .participant-name::before {
	content: "Sanyalak Tumsuwun";
}

#participant-22 .participant-quote::before {
	content: "relax, enjoy and happy. 📗📙📘"
}

/* Next participant */
#participant-23 {}

#participant-23 .profile-photo {
  background-image: url("../images/sudkhett.jpg");
}

#participant-23 .participant-name::before {
  content: "Sudkhett Pitakplangkru";
}

#participant-23 .participant-quote::before {}

/* Next participant */
#participant-24 {
  background-image: url("../images/TBprofile.jpg"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: dashed 2px rgb(50, 45, 38);
}

#participant-24 .profile-photo {
 border: none;
}

#participant-24 .participant-name::before {
  content: "Suntarinth_Tib";
  font-family: "Caveat", serif;
  font-size: large;
  font-weight: 700;
  border: none;
  border-radius: 3px;
  color: #322f2b;
  background-color: #f1e0ce;
  opacity: 0.7;
}

#participant-24 .participant-quote::before {
  content: "Fail better ";
  background: linear-gradient(to right bottom,#f1a183,#ed884c,#e64f25,#bd2630,#991b27);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  border: none;
} 

/* Next participant */
#participant-25 {
  border: 3px solid #ffffff;
  background-image: url("../images/aomprofile.png");
  background-size: cover;
  background-position: center;
}

#participant-25:hover {
  background-image: none;
  background-image: linear-gradient(315deg, #000000 0%, #ffffff 74%);
}
#participant-25 .profile-photo {
 border: none;
}

#participant-25:hover .profile-photo {
  background-image: url("../images/aomprofile.png");
}

#participant-25 .participant-name::before {
 content: none;
}

#participant-25:hover .participant-name::before {
  content: "Suphol (ออม)";
  color: rgb(255, 255, 255);
  
}

#participant-25 .participant-quote::before {
  content: "Never memorize something that you can look up.";
  /* background-color: rgba(0, 0, 0, 0.7); */
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#participant-25:hover .participant-quote::before {
 /*  background-image: linear-gradient(315deg, #000000 0%, #ffffff 74%); */
  opacity: 1;
 /*  background: linear-gradient(to right, rgb(170, 169, 169), rgb(58, 57, 57)) */
}

/* Next participant */
#participant-26 {
  background-color: #efc9af;
  border: 3px solid #104c91;
  box-shadow: 0 4px 10px #1f8ac0;
  border-radius: 15px;
}

#participant-26 .profile-photo {
  background-image: url("../images/tanida-profile.jpg");
}

#participant-26 .participant-name::before {
  content: "Tanida (Pang/แป้ง)";
}

#participant-26 .participant-quote::before {
  content: "Don't Stop Until Your're Proud.";
}

/* Next participant */
#participant-27 {
  background-color: #8fd8f0;
  border: 3px solid #4195cc;
  box-shadow: 0 4px 10px rgba(0, 121, 107, 0.4);
}

#participant-27 .profile-photo {
  background-image: url("../images/tanut-profile.jpg");
}

#participant-27 .participant-name::before {
  content: "Tanut Ketrueang";
}

#participant-27 .participant-quote::before {
  content: "If you give in, they'll be right.";
}

#participant-27:hover {
  background-color: #4195cc;
  border: 3px solid black;
  box-shadow: 0 8px 15px #020608;
}

#participant-27:hover .participant-quote::before {
  color: white;
}

#participant-27:hover .participant-name::before {
  color: white;
}

/* Next participant */
#participant-28 {}

#participant-28 .profile-photo {
  background-image: url("../images/profile.jpg");
}

#participant-28 .participant-name::before {
  content: "Tawatchai Jitporn";
}

#participant-28 .participant-quote::before {
  content: "Keep Learning!!! Keep Going!!!";
}

/* Next participant */
#participant-29 {
  background-image: linear-gradient(to top, #55c8e5, #3fd1d5, #55d7ba, #7fd999, #aed879, #cdcd68, #e9c063, #ffb26a, #ff9f7c, #ff8f97, #ff87b5, #e788d2);
  border: 3px solid #000000;
  border-radius: 15px;
}

#participant-29 .profile-photo {
  background-size: cover;
  background-position: center;
  width: 50%;
  height: 50%;
  margin-bottom: 10px;
  border: 2px solid white;
  border-radius: 0;
  background-image: url("../images/jets_cat.jpg");
}

#participant-29 .participant-name::before {
  content: "Jett";
}

#participant-29 .participant-quote::before {
  content: "Be grateful and enjoy your life. 😁🙏";
}

/* Next participant */
#participant-30 {
  background-image: ; #e788d3
}

#participant-30 .profile-photo {
  background-image: url("../images/teeraput.jpg");
}

#participant-30 .participant-name::before {
  content: "TEERAPUT VILALAI";
}

#participant-30 .participant-quote::before {
  content: "It's never too late to start again";
}

/* Next participant */
#participant-31 {
  position: relative;
  border: 0;
  background-image: linear-gradient(to right bottom, #747481, #5d5d67, #47474e, #323236, #1e1e20);
}

#participant-31 .profile-photo {
  background-image: url("../images/241016-resume-hug.jpg");
  background-position: top;
}

#participant-31 .participant-name::before {
  color: #fff;
  content: "Thanawat (อาร์ต)";
}

#participant-31 .participant-quote::before {
  color: #d5d5da;
  content: "Failure isn't real unless you quit for real";
}

/* Next participant */
#participant-32 {
  background-color: #D9DFC6;
  border: 3px solid #5f6f52;
  box-shadow: 3px 3px #A4B465;
}
#participant-32 .profile-photo {
  background-image: url("https://ca.slack-edge.com/T08AK72NJM6-U08B3JV38GZ-c0e6710cbefe-512");
  border: none;
  box-shadow: 0 5px 10px rgb(95, 111, 82, 0.7);
}

#participant-32 .participant-name::before {
  content: "Tammy(แตมมี่)";
  background-image: linear-gradient(45deg, #4C4B16 59%, #626F47 31%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#participant-32 .participant-quote::before {
  color: #5f6f52;
  content: "Happiness is a journey that is not a destination.";
}
/* Next participant */
#participant-33 {
  background-image: linear-gradient(to bottom right,#ebbeec, #abcff7 );
  border: 2px solid #19136e;
  box-shadow: inset 4px 4px 10px #66427b , 4px 4px 10px #2066b6 ;
}

#participant-33 .profile-photo {
  background-image: url("../images/Varinthorn-Profile.jpeg");
}

#participant-33 .participant-name::before {
  content: "Earn";
}

#participant-33 .participant-quote::before {
  content: "Inhale courage, exhale fear";
  color: #421204;
  font-size: 11px;
}

/* Next participant */
#participant-34 {}

#participant-34 .profile-photo {
  background-image: url("../images/participant-4.jpg");
}

#participant-34 .participant-name::before {
  content: "Your Name Here";
}

#participant-34 .participant-quote::before {}

/* Next participant */
#participant-35 {
  background-color: #85A947;
  border: 3px solid #3E7B27;
}

#participant-35 .profile-photo {
  background-image: url("https://static.vecteezy.com/system/resources/thumbnails/008/101/584/small_2x/floating-green-mustard-lettuce-cartoon-icon-illustration-food-nature-icon-concept-isolated-premium-vector.jpg");
  border: 3px solid #3E7B27
}

#participant-35 .participant-name::before {
  content: "pakkaddd";
  color: #123524;
}

#participant-35 .participant-quote::before {
  content: "may the force be with you.";
  color: #123524;
}

/* Next participant */

@keyframes floatingCats {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}

#participant-36 {
  background-color: pink;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ctext x='10' y='50' font-size='30'%3E🐱%3C/text%3E%3Ctext x='50' y='80' font-size='30'%3E😺%3C/text%3E%3Ctext x='60' y='30' font-size='30'%3E😸%3C/text%3E%3C/svg%3E");
background-size: 100px 100px;
animation: floatingCats 20s linear infinite;
-webkit-animation: floatingCats 20s linear infinite;
}

#participant-36 .profile-photo {
  background-image: url("../images/cats.png");
  border-radius: 5%;
  -webkit-border-radius: 5%;
  -moz-border-radius: 5%;
  -ms-border-radius: 5%;
  -o-border-radius: 5%;
}

#participant-36 .participant-name::before {
  content: "Kan";
  font-size: 1.5rem;
  color: white;
  -webkit-text-stroke: 0.5px rgb(95, 95, 95);
}

#participant-36 .participant-quote::before {
  content: "เขียนโค้ดเจอบัคเขียนรักเจอเธอ";
  font-size: medium;
  color: white;
  font: bolder;
  -webkit-text-stroke: 0.2px rgb(95, 95, 95);
}

/* Next participant */
#participant-37 {
  background-color: #333;
  border: 2px solid #333;
  border-radius: 0;
}

#participant-37 .profile-photo {
  background-image: url("https://introduction-to-web-application.vercel.app/profile.jpg");
  clip-path: polygon(evenodd,
      35.75% 25.45%,
      63.17% 26.81%,
      73.25% 10.5%,
      83.96% 35.5%,
      89.23% 47.8%,
      84.41% 69.9%,
      73.25% 85.5%,
      60.75% 85.5%,
      60.75% 85.5%,
      35.75% 85.5%,
      35.75% 85.5%,
      23.25% 85.5%,
      12.54% 69.9%,
      9.95% 52.7%,
      12.54% 35.5%,
      24.15% 10.5%);
}

#participant-37 .participant-name::before {
  content: "John Doe";
  color: gold;
  font-weight: 600;
  font-family: monospace;
}

#participant-37 .participant-quote::before {
  content: "Kindness is the ultimate strength. 😎";
  color: gold;
  font-family: monospace;
  font-style: normal;
  font-weight: 300;
}

/* Next participant */
#participant-38 {
  background-color: #e0f7fa;
  border: 3px solid #00796b;
  box-shadow: 0 4px 10px rgba(0, 121, 107, 0.4);
  border-radius: 15px;
}

#participant-38 .profile-photo {
  background-image: url("../images/neetibut-profile.png");
}

#participant-38 .participant-name::before {
  content: "Neeti(นิติ)";
}

#participant-38 .participant-quote::before {
  content: "Be the change you want to see in the world. 🙌";
}
