@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  margin: 0;
  padding: 0;
}

header {
  background-color: rgb(140, 244, 124);
  width: 100%;
  display: flex;
  flex-direction: row;
  place-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  padding: 0 20px 0 20px;
  box-shadow: 2px 2px 10px grey;
  z-index: 100;
}

nav div {
  display: flex;
  flex-direction: row;
  gap: 50px;
  margin-right: 35px;
  height: 100%;
  background-color: rgb(126, 244, 108);
  border-radius: 10px;
  padding: 10px 20px 10px 20px;
  box-shadow: 0px 0px 3px grey;
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  padding: 5px 10px 5px 10px;
  transition: background-color 0.2s ease;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

nav a:hover {
  background-color: rgb(94, 206, 77);
  border-radius: 10px;
}

header p {
  margin: 0;
  font-weight: bold;
  font-family:
    "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  text-shadow: 1px 1px 3px rgb(0, 0, 0);
  color: rgb(0, 78, 29);
}

main,
footer {
  background-color: rgb(241, 241, 241);
  padding: 10px;
  padding-top: 70px;
}

footer {
  padding-top: 0px;
}

main > div,
footer > div {
  display: flex;
  flex-direction: row;
  background-color: white;
  box-shadow: 0px 0px 5px grey;
  animation: appear 1s ease;
}

footer > div > section {
  padding: 5px;
}

.footerLeft {
  background-color: rgb(55, 196, 76);
  min-width: 275px;
}

.footerRight {
  display: flex;
  justify-content: end;
  width: 100%;
  padding-right: 20px;
}

.footer2 {
  display: flex;
  justify-content: center;
}

.footer2 > div {
  width: 80%;
}

.footerL2 {
  background-color: rgb(186, 255, 186);
}

.fade {
  color: rgba(255, 255, 255, 0.8);
}

.faded {
  color: rgba(0, 0, 0, 0.6);
}

.profile {
  background-color: rgb(55, 196, 76);
  color: white;
}

.self,
.contact {
  padding: 20px;
}

.self {
  background-color: rgb(72, 169, 74);
  display: flex;
  flex-direction: column;
  place-items: center;
  text-align: center;
}

.self img {
  width: 100px;
  border-radius: 100px;
  border: 3px solid black;
}

.contact img {
  width: 30px;
  height: 30px;
}

.contact .ig {
  width: 20px;
  height: 20px;
}

.contact .gm {
  width: 30px;
  height: 20px;
}

.contact > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.contact > div > div {
  width: 40px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info {
  display: flex;
  flex-direction: column;
  padding: 50px 50px 20px 50px;
  width: 100%;
}

.info > section > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 50px;
  width: 100%;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  padding: 0;
  margin: 0;
}

h3 {
  padding: 0;
  margin: 0;
}

.organized {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.experiences > div > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.projNames {
  display: inline;
  color: green;
}

.prof {
  display: flex;
  flex-direction: row;
  place-items: center;
  justify-content: space-between;
  padding: 0px 20px 0px 20px;
  gap: 20px;
}

.prof p {
  width: 50%;
}

.container {
  background-color: rgb(208, 208, 208);
  width: 60%;
  height: 15px;
}

.load {
  background: green;
  height: 100%;
}

.py {
  width: 70%;
}

.react {
  width: 80%;
}

.tw {
  width: 70%;
}

.html {
  width: 90%;
}

.fig {
  width: 80%;
}

.leader {
  width: 50%;
}

.adapt {
  width: 90%;
}

.coord {
  width: 90%;
}

.crit {
  width: 70%;
}

.worketh {
  width: 90%;
}

.main2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main2 > div {
  width: 80%;
  justify-content: center;
  align-items: center;
  height: 500px;
  background-color: rgb(186, 255, 186);
}

input,
textarea {
  border: 1px solid black;
  border-radius: 5px;
}

.contactForm {
  display: flex;
  flex-direction: column;
  padding: 10px;
  width: 80%;
  gap: 20px;
}

.contactForm p,
.contactForm label {
  font-size: 1.3rem;
}

.contactIntro {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
}

.contactP p {
  font-size: 0.9rem;
}

.contactIntro p {
  margin: 0;
}

.form1,
.form1 > section {
  display: flex;
  flex-direction: column;
}

.form1 {
  gap: 10px;
}

.form1 > section {
  display: flex;
  gap: 10px;
}

.form1 input {
  height: 30px;
}

textarea {
  resize: none;
  height: 150px;
}

.buttonInput {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.submit {
  height: 40px;
  background-color: rgb(155, 255, 155);
  border: none;
  box-shadow: 0px 1px 2px black;
  width: 50%;
  cursor: pointer;
}

.submit:active {
  box-shadow: 0px 0px 0px black;
}

.radios {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.radio {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.rad {
  width: 25px;
}
