*{
    margin: 0px;
    padding: 0px;
}

body{
    font-family: "League Spartan", sans-serif;
}

li{
  list-style: none;
}

/* NAVBAR */

.navbar{
    position: fixed;
    background-color: #fff;
    width: 100vw;
    padding-left: 5rem;
}

.navbar a:hover{
    color: #5300b7;
}

/* HOME PAGE */

h1 {
    font-family: "Montserrat", sans-serif;
}
.btn-purple {
    background-color: #5300b7;
    border: solid #5300b7;
    color: #fff;
}
.btn-purple:hover {
    background-color: #fff;
    border: solid #5300b7;
}
.hero-section {
  min-height: 95vh;
  display: flex;
  padding-top: 5rem;
  align-items: center;
}

.hero-section img{
    margin-bottom: -8.7rem;
}

/* ABOUT PAGE */

.about-section{
  background-color: #5300b7;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
}

.highlight {
  color: #00d4ff;
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-text-right{
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #00d4ff;
}

.stat-label {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.5px;
  max-width: 200px;
  margin: 0 auto;
}

/* FOOTER */

.footer {
  background-color: #000;
  color: #fff;
  padding: 60px 0 30px;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .social-icon {
  background-color: #00cfff;
  color: #000;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 1.2rem;
}
.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 20px;
  margin-top: 30px;
  font-size: 0.9rem;
}
.footer .brand span {
  color: #a64ef4;
}