/* Reset all padding and margins */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */

}

html {
    scroll-behavior: smooth;
    font-size: 16px;

    -webkit-font-smoothing: antialiased !important; 
    -moz-osx-font-smoothing: grayscale !important;  
    text-rendering: optimizeLegibility !important;  
}

@font-face {
    font-family: 'Lapidar';
     src: url('../sources/fonts/Lapidar03-Regular.woff2') format('woff2'),
         url('../sources/fonts/Lapidar03-Regular.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'InstrumentSerif';
     src: url('../sources/fonts/InstrumentSerif-Regular.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

body {
    font-family: 'Lapidar', sans-serif;
    font-style: normal;
    font-size: 1.125rem;
    line-height: 2.125rem;

    font-size: 1rem;
    line-height: 2rem;

    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;

}

h1 {
    font-family: 'InstrumentSerif', serif;
    font-style: normal;
    font-size: 10rem;
    line-height: 11rem;
}

h3 {
    font-family: 'Lapidar', sans-serif;
    font-style: normal;

    font-size: 2rem;
    line-height: 2.125rem;
}

#hero-section {
    display: flex;
    justify-content: center; 
    align-items: center;    
    height: 100vh;

    background-color: #BF274E;
}

#claim {
display: flex;
flex-direction: column;
  justify-content: center;
  align-items: center;
}