@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,500;0,600;0,700;1,200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500&display=swap');

:root {
  --primary-color: #601a97;
  --primary-grdiant: linear-gradient(225deg, #7b1fa2, #4d178f);
  --gap: 2rem;
}

* {
  margin: 0;
  box-sizing: border-box;
}

.heading {
  padding-top: 10%;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--primary-color);
  padding-bottom: 2%;
}
.heading h1 {
  font-size: 50px;
  font-family: 'Poppins';
  color: #ffffff;
}

.content {
  height: 55vh;
  margin-left: 10%;
  margin-right: 10%;
  text-align: center;
}

.content h2 {
  font-size: 2em;
  font-weight: 600;
  font-family: 'poppins';
  color: #a1a1a1;
  margin-top: 30px;
  margin-bottom: 30px;
}

.content p {
  font-size: 1.1em;
  font-family: 'Montserrat';
  font-weight: 500;
  line-height: 1.5em;
  color: #2d2d2d;
}
.founder {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 30px;
}
.founder-name {
  font-size: 1em;
  font-family: 'Poppins';
  font-weight: 800;
  color: #464646;
}
.org {
  font-size: 0.8em;
  font-family: 'Poppins';
  font-weight: 500;
  color: #a1a1a1;
}

.press-info {
  padding: 0 10%;
  height: 40vh;
}
.seprator {
  padding-left: 15px;
  padding-right: 15px;
}
.press-info h1 {
  font-size: 3em;
  font-weight: 700;
  font-family: 'Montserrat';
  background: linear-gradient(90deg, #7f00ff 22%, #e100ff 60.78%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  margin-top: 20px;
}
.press-info p {
  font-size: 1.2em;
  font-family: 'Roboto';
  font-weight: 500;
  color: #500e93;
  margin-bottom: 30px;
}
.press-info a {
  font-size: 1.2em;
  font-weight: 400;
  color: #484848;
  font-family: 'Roboto';
  text-decoration: none;
}

@media (max-width: 650px) {
  .heading {
    background-color: #8428ed;
  }
  .press-info {
    margin-top: 250px;
    padding: 0 10%;
    height: 40vh;
  }
  .press-info h1 {
    font-size: 2.3em;
  }
  .press-info a {
    font-size: 1em;
  }
}
