@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Be Vietnam Pro", sans-serif;
}

#wrapper {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

header {
  width: 100%;
  display: flex;
  padding: 10px 50px;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  display: flex;
  justify-content: baseline;
  align-items: center;
}

header .logo img {
  width: 70px;
}

.logoText {
  margin-left: -0.8rem;
  font-size: 28px;
}

nav ul {
  display: flex;
  margin-right: 4em;
  padding: 0 4em;
  gap: 2rem;
}

nav ul li {
  list-style-type: none;
}

nav ul li a {
  text-decoration: none;
  color: #1f1f1f;
  transition: font-weight 0.3s;
  font-size: 20px;
  line-height: 17px;
  display: inline-block;
}

nav ul li a:hover {
  transform: scale(1.02);
  font-weight: bold;
}

.heroSection {
  gap: 5rem;
  margin: 4rem auto;
  padding: 0 1rem;
  padding-bottom: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 1200px;
}

.infoContainer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.fadedText {
  user-select: none;
  font-size: 6em;
  color: #e7e7e7;
  bottom: -16%;
  left: 0;
  font-weight: bold;
}

.absolute {
  position: absolute;
}

.heading {
  font-size: 35px;
  color: #343d68;
  line-height: 30px;
}

.role {
  color: #4e45d5;
  font-weight: 800;
}

.subHeading {
  font-size: 45px;
  line-height: 40px;
}

.desc {
  font-size: 16px;
  margin-top: 1rem;
  width: 70%;
  font-weight: 500;
}

.btn {
  background-color: #e84949;
  width: fit-content;
  color: white;
  padding: 0.8rem 2.3rem;
  box-shadow: 5px 5px 7px 0px #0000003f;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.5s;
  font-weight: 500;
  border: solid 3px transparent;
  position: relative;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.8s;
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn:hover {
  border: solid 3px #e84949;
  color: black;
}

.imgContainer {
  position: relative;
}

.userImage {
  padding: 2.5rem;
  transition: all 1s;
  animation: scaleImage 5s linear infinite;
  width: 345px;
  height: 390px;
}

@keyframes scaleImage {
  0% {
    scale: 1;
    filter: grayscale(1);
  }

  50% {
    filter: grayscale(0);
    box-shadow: 3px 3px 10px black;
    scale: 0.9;
  }

  100% {
    scale: 1;
    filter: grayscale(1);
  }
}

.userImage img {
  z-index: -9;
  width: 100%;
}

.icons {
  z-index: 9;
}

.iconDots {
  bottom: -1rem;
  right: 0;
  animation: dotsAnimation 5s linear infinite;
}

@keyframes dotsAnimation {
  50% {
    transform: translateY(-15px);
  }
}

.iconZigZag {
  z-index: 10;
  top: 1.5em;
  left: -0.3em;
  animation: zigzagAnimation 5s infinite;
}

@keyframes zigzagAnimation {
  50% {
    left: 5%;
    top: 3%;
  }
}

.icon-cube {
  z-index: 9;
  top: -0.8em;
  right: 1em;
  animation-name: cubeRotate;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes cubeRotate {
  0% {
    transform: rotateY(0deg) translateY(0px);
  }
  50% {
    transform: rotateY(180deg) translateY(-12px);
  }
  100% {
    transform: rotateY(360deg) translateY(0px);
  }
}

.icon-circle {
  z-index: 9;
  left: 0;
  bottom: 0;
  animation-name: shakeEffect;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes shakeEffect {
  50% {
    left: 5%;
    bottom: 10%;
  }
}
.icon-plus {
  z-index: 9;
  top: -0.8rem;
  left: 50%;
  animation: shakeEffectPlus 5s ease-in infinite;
}

@keyframes shakeEffectPlus {
  50% {
    top: 2%;
    left: 48%;
  }
}

.projectSection {
  margin-top: 4rem;
  background-color: #e7e7e7;
}

.projectTitle {
  color: #e84949;
  font-size: 90px;
  line-height: 75px;
  padding: 50px 0 30px;
  text-align: center;
}

.projectContainer {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

#project1 {
  background-image: url(./Images/projects/Project1.png);
  right: 5%;
}

#project2 {
  background-image: url(./Images/projects/Project2.jpg);
  left: 5%;
}

#project3 {
  background-image: url(./Images/projects/Project3.jpg);
  right: 5%;
}

#project4 {
  background-image: url(./Images/projects/Project4.png);
  left: 5%;
}

.projectCard {
  width: 80%;
  height: 550px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  box-shadow: 0px 0px 40px #1f1f1f;
  margin: 2rem auto;
  z-index: 2;
}

.projectCard::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(45deg, #343d68, #343d68be, #343d687c);
  z-index: 1;
  transition: 0.5s all;
  transform-origin: left;
  transform: scaleX(0);
}

.projectCard:hover::before {
  transform: scaleX(1);
}

.projectNumber {
  position: absolute;
  font-size: 200px;
  font-weight: 600;
  color: #fff;
  display: none;
  z-index: 10;
  transition: 0.8s;
}

.rightNumber {
  top: -45px;
  right: -45px;
}

.leftNumber {
  top: -45px;
  left: -45px;
}

.projectCard:hover .projectNumber {
  display: block;
}

.projectCard::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #1f1f1f9a;
  z-index: 0;
}

.projectContent {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
  padding: 2em;
  bottom: 20%;
  position: absolute;
  z-index: 5;
  transition: all 0.4s;
}

.leftProjectContent {
  left: 5%;
}

.rightProjectContent {
  right: 5%;
}

.projectSkillsContainer {
  display: flex;
  flex-wrap: wrap;
  max-width: 60%;
  gap: 1em;
}

.projectSkill {
  width: 40px;
}
.projectHeading {
  font-size: 50px;
  font-weight: bold;
  line-height: 3rem;
}

.projectSubHeading {
  font-size: 16px;
  font-style: italic;
  width: 70%;
}

.projectCard:hover .projectContent {
  transform: scale(1.1);
}

.btnGroup {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.btnGroup .btnProject {
  border: none;
  outline: none;
}
.icon {
  cursor: pointer;
  color: white;
  font-size: 35px;
  transition: all 0.4s;
}

.icon:hover {
  color: #e84949;
}

.experienceSection {
  background-color: #e7e7e7;
  padding: 4rem 0;
  margin-top: 4rem;
  position: relative;
}

.experienceTitle {
  color: #e84949;
  font-size: 90px;
  line-height: 75px;
  padding: 50px 0 30px;
  text-align: center;
  font-weight: 700;
}

.experienceContainer {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.experienceCard {
  background: white;
  border-left: 5px solid #e84949;
  padding: 2.5rem;
  box-shadow: 0px 0px 20px rgba(31, 31, 31, 0.3);
  border-radius: 5px;
  transition: all 0.4s ease;
  position: relative;
}

.experienceCard:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 30px rgba(31, 31, 31, 0.4);
}

.experienceCardContent {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.experienceHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.experienceRole {
  font-size: 28px;
  font-weight: 700;
  color: #343d68;
  margin: 0;
}

.experienceDate {
  font-size: 16px;
  color: #e84949;
  font-weight: 600;
  white-space: nowrap;
  margin: 0;
}

.experienceCompany {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.companyName {
  font-size: 20px;
  font-weight: 700;
  color: #e84949;
  margin: 0;
}

.companyLocation {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.experiencePoints {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.experiencePoints li {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  font-weight: 500;
}

.experiencePoints li:first-letter {
  text-transform: uppercase;
}

.certificateButton {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.btnCertificate {
  background-color: #e84949;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.5s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.2);
}

.btnCertificate:hover {
  background-color: #d43939;
  transform: scale(1.05);
  box-shadow: 0px 10px 20px rgba(232, 73, 73, 0.4);
}

.skillContainer {
  position: relative;
  display: flex;
  padding: 5rem;
  margin: 10rem auto;
  gap: 30px;
}

.leftSkillContainer {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.skillHeading {
  color: #e84949;
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
}

.skillHeading span {
  font-size: 90px;
}

.skillSubHeading {
  margin-top: 1rem;
  width: 85%;
  text-align: justify;
}
.skillSubHeading p {
  margin: 15px 0;
}
.rightSkillContainer {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  width: 50%;
  position: relative;
  justify-content: center;
}

.blobStyle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: blobAnimation 3s linear infinite;
}

@keyframes blobAnimation {
  50% {
    top: 54%;
    left: 46%;
  }
}

.skillsLogo {
  width: 80px;
  transition: all 0.5s;
}

.skillsLogo:hover {
  transform: scale(1.2);
}

.skillFadedText {
  font-size: 12em;
  right: -9%;
  bottom: -35%;
  user-select: none;
  color: #e7e7e7;
  font-weight: bold;
}

.contactMeSection {
  width: 100%;
  background-color: #e7e7e7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container h2 {
  font-size: 5em;
  padding-top: 2rem;
  color: #e84949;
}

.container h3 {
  font-size: 3em;
  color: #343d68aa;
}

.contactUsForm {
  display: flex;
  margin-top: 25px;
  justify-content: center;
  align-items: center;
}

.contactUsForm form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.formField {
  width: 100%;
  height: 42px;
  padding: 0 2rem;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  box-shadow: 2px 2px 10px #1f1f1f;
  background: #ffffff97;
  font-weight: 500;
}

.formfield:focus {
  border: none;
}

.formFieldContainer textarea {
  height: auto;
  padding-top: 1rem;
}

.formBtn .btn {
  transition: 0.5s;
  border: none;
  font-size: 1.4rem;
  margin: 1rem 0;
}

.formBtn .btn:hover {
  transform: scale(0.9);
}

.formBtn .btn i {
  padding: 0 1rem;
  font-size: 1.5rem;
}

footer {
  background: #343d68;
  position: relative;
  padding: 5rem;
}

.footerFadedText {
  font-size: 5em;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #535c87;
  user-select: none;
}

.footerContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
}

.linkContainer {
  display: flex;
  gap: 1.2em;
}

.linkContainer div a {
  color: white;
  text-decoration: none;
  transition: all 0.6s;
}

.linkContainer div a:hover{
  color: #e84949;
}

.iconContainer{
  display: flex;
  gap: 1rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 0;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  padding: 10px 20px;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover {
  color: #000;
}

.modal-body {
  padding: 40px;
  text-align: center;
  color: #333;
}

.success-icon {
  font-size: 60px;
  color: #4caf50;
  margin-bottom: 20px;
  animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.modal-body h2 {
  color: #2c3e50;
  margin: 15px 0;
  font-size: 28px;
}

.modal-body p {
  color: #666;
  font-size: 16px;
  margin-bottom: 25px;
}

.modal-body .btn {
  background-color: #343d68;
  border-color: #343d68;
  color: white;
  padding: 10px 30px;
  cursor: pointer;
  transition: all 0.3s;
}

.modal-body .btn:hover {
  background-color: #2a2e52;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .modal-content {
    width: 85%;
  }
  .modal-body {
    padding: 30px 20px;
  }
  .modal-body h2 {
    font-size: 24px;
  }
}

/* ============= RESPONSIVE DESIGN ============= */

/* ===== TABLET BREAKPOINT (768px and below) ===== */
@media (max-width: 768px) {
  /* Header */
  header {
    padding: 10px 20px;
    flex-direction: column;
    gap: 1rem;
  }

  header .logo img {
    width: 50px;
  }

  .logoText {
    font-size: 20px;
  }

  nav ul {
    margin-right: 0;
    padding: 0;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 14px;
  }

  nav ul li a {
    font-size: 16px;
  }

  /* Hero Section */
  .heroSection {
    width: 100%;
    padding: 0 1rem;
    margin: 2rem auto;
    flex-direction: column;
    gap: 2rem;
  }

  .heading {
    font-size: 28px;
  }

  .subHeading {
    font-size: 32px;
  }

  .desc {
    width: 100%;
    font-size: 14px;
  }

  .fadedText {
    font-size: 4em;
    bottom: -10%;
  }

  .userImage {
    width: 280px;
    height: 320px;
    padding: 1.5rem;
  }

  .icons {
    display: none;
  }

  /* Project Section */
  .projectTitle {
    font-size: 50px;
    line-height: 50px;
    padding: 30px 0 20px;
  }

  .projectContainer {
    gap: 60px;
  }

  .projectCard {
    width: 90%;
    height: 400px;
  }

  .projectContent {
    padding: 1.5em;
    bottom: 10%;
  }

  .projectSkillsContainer {
    max-width: 100%;
  }

  .projectHeading {
    font-size: 32px;
    line-height: 2rem;
  }

  .projectSubHeading {
    width: 100%;
    font-size: 14px;
  }

  .projectSkill {
    width: 30px;
  }

  /* Experience Section */
  .experienceTitle {
    font-size: 50px;
    line-height: 50px;
  }

  .experienceContainer {
    padding: 0 1rem;
  }

  .experienceHeader {
    flex-direction: column;
    gap: 0.5rem;
  }

  .experienceRole {
    font-size: 22px;
  }

  .experienceDate {
    font-size: 14px;
  }

  /* Skills Section */
  .skillContainer {
    flex-direction: column;
    padding: 2rem;
    margin: 5rem auto;
    gap: 2rem;
  }

  .leftSkillContainer {
    width: 100%;
  }

  .rightSkillContainer {
    width: 100%;
  }

  .skillHeading {
    font-size: 36px;
  }

  .skillHeading span {
    font-size: 60px;
  }

  .skillSubHeading {
    width: 100%;
  }

  .skillsLogo {
    width: 60px;
  }

  .skillFadedText {
    font-size: 8em;
    right: -5%;
    bottom: -20%;
  }

  .blobStyle {
    width: 200px;
  }

  /* Contact Section */
  .container h2 {
    font-size: 3em;
    padding-top: 1rem;
  }

  .container h3 {
    font-size: 1.8em;
  }

  .contactUsForm form {
    gap: 20px;
  }

  .formField {
    height: 38px;
    font-size: 16px;
    padding: 0 1rem;
  }

  /* Footer */
  footer {
    padding: 2rem;
  }

  .footerFadedText {
    font-size: 3em;
  }

  .footerContainer {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    padding: 0.7rem 1.8rem;
    font-size: 16px;
  }
}

/* ===== MOBILE BREAKPOINT (480px and below) ===== */
@media (max-width: 480px) {
  * {
    margin: 0;
    padding: 0;
  }

  /* Header */
  header {
    padding: 8px 15px;
    gap: 0.5rem;
  }

  header .logo {
    justify-content: center;
    width: 100%;
  }

  header .logo img {
    width: 40px;
  }

  .logoText {
    font-size: 18px;
    margin-left: -0.5rem;
  }

  nav ul {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
  }

  nav ul li a {
    font-size: 14px;
    display: block;
    padding: 0.5rem;
    text-align: center;
  }

  /* Hero Section */
  .heroSection {
    margin: 1rem auto;
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .infoContainer {
    gap: 1.5rem;
  }

  .heading {
    font-size: 22px;
    line-height: 25px;
  }

  .subHeading {
    font-size: 24px;
    line-height: 28px;
  }

  .desc {
    font-size: 13px;
    width: 100%;
    line-height: 1.5;
  }

  .infoContainer > div:last-child {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .fadedText {
    font-size: 2.5em;
    bottom: 5%;
    display: none;
  }

  .userImage {
    width: 200px;
    height: 240px;
    padding: 1rem;
  }

  .userImage img {
    width: 100%;
  }

  /* Project Section */
  .projectTitle {
    font-size: 32px;
    line-height: 35px;
    padding: 20px 0 15px;
  }

  .projectContainer {
    gap: 40px;
  }

  .projectCard {
    width: 95%;
    height: 300px;
    margin: 1rem auto;
  }

  .projectContent {
    padding: 1rem;
    bottom: 5%;
    gap: 0.8rem;
  }

  .leftProjectContent {
    left: 0;
  }

  .rightProjectContent {
    right: 0;
  }

  .projectSkillsContainer {
    max-width: 100%;
    gap: 0.8rem;
  }

  .projectSkill {
    width: 25px;
  }

  .projectHeading {
    font-size: 20px;
    line-height: 1.5rem;
  }

  .projectSubHeading {
    width: 100%;
    font-size: 12px;
    display: none;
  }

  .projectNumber {
    display: none !important;
  }

  .btnGroup {
    gap: 0.6rem;
    flex-wrap: wrap;
  }

  /* Experience Section */
  .experienceSection {
    padding: 2rem 0;
    margin-top: 2rem;
  }

  .experienceTitle {
    font-size: 32px;
    line-height: 35px;
    padding: 20px 0 15px;
  }

  .experienceContainer {
    max-width: 100%;
    padding: 0 1rem;
    gap: 1rem;
  }

  .experienceCard {
    padding: 1.5rem;
    border-left: 3px solid #e84949;
  }

  .experienceRole {
    font-size: 18px;
  }

  .experienceDate {
    font-size: 12px;
  }

  .companyName {
    font-size: 16px;
  }

  .companyLocation {
    font-size: 12px;
  }

  .experiencePoints li {
    font-size: 13px;
  }

  .certificateButton {
    margin-top: 1rem;
    flex-wrap: wrap;
  }

  /* Skills Section */
  .skillContainer {
    padding: 1rem;
    margin: 2rem auto;
    gap: 1.5rem;
  }

  .leftSkillContainer {
    width: 100%;
  }

  .rightSkillContainer {
    width: 100%;
    gap: 1.5rem;
  }

  .skillHeading {
    font-size: 24px;
  }

  .skillHeading span {
    font-size: 40px;
  }

  .skillSubHeading {
    width: 100%;
    margin-top: 0.5rem;
  }

  .skillSubHeading p {
    margin: 10px 0;
    font-size: 13px;
  }

  .skillsLogo {
    width: 45px;
  }

  .skillFadedText {
    font-size: 5em;
    right: 0;
    bottom: -15%;
    opacity: 0.3;
  }

  .blobStyle {
    display: none;
  }

  /* Contact Section */
  .container {
    max-width: 100%;
    padding: 0 1rem;
  }

  .container h2 {
    font-size: 2em;
    padding-top: 1rem;
  }

  .container h3 {
    font-size: 1.3em;
    line-height: 1.4;
  }

  .contactUsForm {
    width: 100%;
  }

  .contactUsForm form {
    width: 100%;
    gap: 15px;
  }

  .formFieldContainer {
    width: 100%;
  }

  .formField {
    width: 100%;
    height: 40px;
    font-size: 15px;
    padding: 0 1rem;
  }

  .formFieldContainer textarea {
    height: 120px;
    padding-top: 0.8rem;
  }

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

  .btn {
    padding: 0.65rem 1.5rem;
    font-size: 14px;
  }

  .formBtn .btn {
    width: fit-content;
  }

  /* Footer */
  footer {
    padding: 1.5rem;
  }

  .footerFadedText {
    font-size: 2em;
  }

  .footerContainer {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.8rem;
  }

  .linkContainer {
    justify-content: center;
  }

  .iconContainer {
    justify-content: center;
    gap: 0.8rem;
  }

  .icon {
    font-size: 28px;
  }

  /* Modal adjustments */
  .modal-content {
    width: 90%;
    margin: 50% auto;
  }

  .modal-body {
    padding: 20px 15px;
  }

  .modal-body h2 {
    font-size: 20px;
  }

  .modal-body p {
    font-size: 14px;
  }

  .success-icon {
    font-size: 45px;
  }
}

/* ===== EXTRA SMALL DEVICES (below 360px) ===== */
@media (max-width: 360px) {
  header {
    padding: 5px 10px;
  }

  .heading {
    font-size: 20px;
  }

  .subHeading {
    font-size: 22px;
  }

  .projectTitle,
  .experienceTitle {
    font-size: 28px;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 13px;
  }

  .container h2 {
    font-size: 1.8em;
  }

  .container h3 {
    font-size: 1.1em;
  }
}