
:root{
  --BGCOLOR:#F1f1f1;
  --FONTCOLOR:#5D8353;
}
html{
    font-size: 32px;
}
body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--BGCOLOR);
    color: var(--FONTCOLOR);
    position: relative;
}
*{
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.italic {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
}

.centerHold{
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction:column
}
.Name{
    font-size: 10.5rem;
    letter-spacing: 30px;
}
.noiseLayer{ pointer-events: none; 
    position: fixed; 
    inset: 0; 
    background-image: url('noiseTexture2.png'); 
    background-repeat: repeat; 
    opacity: 0.2; 
    mix-blend-mode: multiply; /* or soft-light, multiply */ 
    z-index: 0; 
    width: 100vw; 
    height: 100vh; 
}
.subHeader{
    font-size: 2rem;
}
.CTAbtn{
    width: 30vw;
    height: 80px;
    font-size: 2rem;
    display: block;
    background-color: var(--FONTCOLOR);
    color: var(--BGCOLOR);
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 40px;
}
.topBar{
    height: 72px;
    width: 100vw;
    display: flex;
    gap: 20px;
}
.logo{
    display: block;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    margin-left: 10px;
    text-decoration: none;
    color: var(--FONTCOLOR);
}
.navBarItem{
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--FONTCOLOR);
}