@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&family=Raleway:wght@600;700&display=swap");

:root {
  --primary-color: rgb(0, 180, 0);
  --secondary-color: rgb(0, 180, 0);
  --text-color: #333;
  --background-color: white;
  --default-font-size: 16px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
body {
  height: 100vh;
  padding-bottom: 0;
}
.experience-section {
  height: 100vh;
  padding: 100px 20px;
  background-color: var(--background-color);
  text-align: center;
}
.experience-section p {
  padding: 70px 100px;
  word-spacing: 4px;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--primary-color);
}

@media screen and (max-width: 768px) {
  body {
    padding-bottom: 0;
  }
  .experience-section {
    padding: 100px 15px;
    background-color: var(--background-color);
    text-align: center;
    padding-bottom: 100px;
    height: auto;
  }
  .experience-section p {
    padding: 50px 80px;
  }
  .section-title {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 18px;
    color: var(--primary-color);
  }
}

@media screen and (max-width: 480px) {
  body {
    height: 100%;
    padding-bottom: 0;
  }
  .experience-section {
    padding: 100px 10px;
    background-color: var(--background-color);
    text-align: center;
    padding-bottom: 100px;
    height: auto;
  }
  .experience-section p {
    padding: 40px 60px;
  }
  .section-title {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--primary-color);
  }
}
