
/*general settings*/
.flex{
  display: flex;
  gap: var(--gap, 3rem);
}
body, html{
 height: 100%;
 margin: 0;
}

/* Style the header */
header{
   padding-top: 70px;
   padding-bottom: 200px;
}

.header-text{
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: bold;
  font-size: 5.5em;
  text-align: center;
  color: #0a0312;
}

.p-1{
  font-size: large;
  text-align: center;
  margin: 30px;
}

/* Nav bar style*/
.main-navbar{

}

/* VVV scrollbar customization VVV */
::-webkit-scrollbar{
  width: 10px;
}
::-webkit-scrollbar-track{
  background: none;
}
::-webkit-scrollbar-thumb{
  background: white;
}
::-webkit-scrollbar-thumb:hover{
  background: #e0e0e0;
}
