* {
  margin: 0;
  background-color: black;
  color: white;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.content {
  margin: 7rem 6rem;
}

.mainsec,
.sec2inner,
.sec3inner {
  display: flex;
  justify-content: space-evenly;
}

.leftsec {
  font-weight: 500;
}

.mainhead {
  font-size: 7rem;
  margin-bottom: 4rem;
}

.mainbtn {
  border: 2px solid white;
  border-radius: 10rem;
  padding: 1rem 2rem;
  text-align: center;
  font-size: 1.6rem;
}

.mainpic {
  height: 70vh;
  width: 26vw;
  border-radius: 80% 18%;
}

.below {
  display: flex;
  justify-content: end;
  margin-top: 1.2rem;
}

.arrow {
  margin: 0.5rem;
  height: 8vh;
  width: 3vw;
}

.wwm {
  margin: 1.4rem 0.4rem;
  font-size: 1.4rem;
}

.aboutimg {
  height: 85vh;
  width: 28vw;
  border-radius: 75% 20%;
}

.section2 {
  margin: 4rem 0rem;
}

.about,
.contacthead,
.heading {
  font-size: 7rem;
}

.aboutpara {
  margin: 6rem 0rem;
  font-size: 2rem;
  border-bottom: 2px solid white;
  padding: 0rem 0rem 3rem 0rem;
}

.section3,
.section4 {
  margin: 6rem 8rem;
}

.one {
  display: flex;
}

.right {
  margin-left: 12rem;
  padding-left: 20rem;
}

.skill {
  margin: 1.4rem 1.4rem;
  font-size: 2.8rem;
}

ul {
  margin-top: 1rem;
}

li {
  font-size: 2rem;
  padding: 0.2rem;
}

section {
  margin: 10px auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

form {
  display: grid;
  gap: 20px;
}

label {
  font-size: 2rem;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

button {
  background-color: #000000;
  color: #ffffff;
  padding: 5px 15px;
  border: 2px solid white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 25px;
}

.mainbtn,
.arrow,
.wwm,
.about,
.contacthead,
.heading,
.skill,
ul,
form,
input,
textarea,
button {
  transition: all 0.3s ease;
}

.mainsec,
.sec2inner,
.sec3inner,
.aboutimg,
.rightsec {
  animation: fadeInUp 1s ease-out;
}

.leftsec {
  animation: fadeInLeft 1s ease-out;
}

.rightsec .mainpic {
  animation: fadeInRight 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mainbtn:hover,
button:hover {
  background-color: #c2c2c2;
  color: #000000;
}
