@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;700;800;900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --textColor: rgb(119, 116, 116);
  --titleColor: rgb(31, 31, 119);
  --opColor: rgb(52, 52, 58);
  --hoverColor: orange;
}
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

img {
  width: 100%;
}

#intro {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.content h4 {
  color: var(--hoverColor);
  font-weight: 300;
}

.left-half h6 {
  text-align: center;
  padding-top: 2rem;
  font-size: 20px;
}

.left-half button {
  padding: 1.9rem 1.5rem;
  font-weight: 700;
  color: white;
  background-color: rgb(49, 49, 49);
  border: none;
  outline: none;
  border-radius: 5px;
  letter-spacing: 2.5px;
  width: 100%;
  margin-top: 3rem;
}

.left-half button:hover {
  background-color: var(--hoverColor);
}


.content p{
  font-size: 20px;
}


/* SECTION 3 // sec-3 */

.sec-3 .left-half p{
  font-size: 18px;
  text-align: justify;
}


/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 600px) {

  .content{
    padding: 0;
  }
  .content .links {
    padding: 0;
  }
  .content .links h3{
    font-size: 24px;
    padding-top: 2rem;
  }
  .main-holder .content .links li{
    text-align: center;
    padding: 0;
  }
.content .links li a{
   
font-size: 16px;
}
  .content p{
    font-size: 14px;
  }
.content h3{
  font-size: 24px;
  padding-bottom: 0;
}
#intro{
  padding-bottom: 0;
  font-size: 16px;
}



/* SECTION 3 // sec-3 */

.sec-3 .left-half p{
  font-size: 14px;
  text-align: justify;
}
}