html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    color: black;
    font-weight: 900;
    transition: color 0.15s;
}
a:hover{
    color: rgb(148, 148, 148);
    font-weight: 900;
}

/* INTRO SECTION */

.special-gothic-expanded-one-regular {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#intro-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

#intro{
    font-size: clamp(2rem, 8vw, 15rem);
    font-family: "Special Gothic Expanded One";
    background-image: url(./assets/hcso_felony.png);
    background-clip: text;
    color: transparent;
    background-position-y: -5vw;
    background-size: cover;
    margin-top: -30px;
}
#pre-intro{
    font-size: clamp(1.3rem, 3vw, 9rem);
    font-family: "Special Gothic Expanded One";
    white-space: nowrap;
}

/* ABOUT ME SECTION */
.bbh-bartle-regular {
  font-family: "BBH Bartle", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.alata-regular {
  font-family: "Alata", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.almarai-regular {
  font-family: "Almarai", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#about-me-section{
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 65vw;
    margin: 0 auto;
}

@media (max-width: 900px) {
  #about-me-section {width: 90vw;}
}

#about-me-header{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: max-content;

    font-size: clamp(0.7rem, 1.5vw, 3.5rem);
    background-image: url(./assets/lapd_3_cars.png);
    background-position-y: -260px;
    background-position-x: center;
    background-repeat: no-repeat;

    color: white;
    font-family: "BBH Bartle";
    letter-spacing: 5px;
}

#about-me-contents{
    margin-top: calc(10vh - 2vw);
}

.about-me-contents-header{
    font-family: "Alata";
    font-weight: bold;
}
.about-me-contents-paragraph{
    font-family: "Almarai";
    line-height: clamp(1.5rem, 2vh, 2rem);
}

/* SECTIONS SYSTEM */
section{
    height: 100vh;
    display: flex;
    /*scroll-snap-align: start;*/
}
/*#container{
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}