html{
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 10px;

    font-family: "Work Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1{
    font-size: 3rem;
    font-weight: 500;
}

h4{
    font-size: 2rem;
}

span{
    font-size: 1.8rem;
}

a{
    font-size: 1.8rem;
}

p{
    font-size: 1.8rem;
}


h2{
    text-align: center;
    font-size: 2.5rem;
}

h3{
    font-size: 2.1rem;
}

.flex{
    display: flex;
}

.flex-col{
    display: flex;
    flex-direction: column;
}

.center{
    justify-content: center;
    align-items: center;
}

.center-vert{
    align-items: center;
}

.center-hori{
    justify-content: center;
}

.round{
    border-radius: 50%;
}

.hidden{
    display:none !important;
}

hr{
    width: 40%;
    margin-top: 1em;
    margin-bottom: 3em;
  }

  .regular-content{
    width: 70%;
    margin: auto;
    overflow-x: hidden;
  }  

  .regular-content h1{
    text-align: center;
  }



/* TEXT */
.heading{
    font-weight: 500;
    text-align: center;
}

.bold{
    font-weight: bold;
}

.align-end{
    text-align: right !important;
}

.color-white{
    color: white;
}

.deco-none{
    text-decoration: none;
}

.p-nopadding p{
    padding:0;
    margin:0;
}

.subheading{
    text-align: center;
    margin-top: 0;

    font-weight: 500;
    
    letter-spacing: 0.02rem;
    
}


/* SPACERS */

.flex-space-between{
    justify-content: space-between;
}

.spacer-1rem{
    width: 1.6rem;
    margin: 0;
    padding: 0;
}

.spacer-05rem{
    width: 0.8rem;
    margin: 0;
    padding: 0;
}


