/* Fonts */

@font-face {
    font-family: 'GayaTrial'; 
    src: url('./fonts/gayatrial-regular.otf') format('opentype');
  }
  
body {
    font-family: 'GayaTrial';
}
h1 {
    font-size: 3rem;
    text-decoration: underline;
}
h2 {
    font-size: 2rem;
    text-decoration: underline;
}
h3 {
    text-decoration: underline;
}
p {
    font-size: 1.0rem;
    line-height: 1.6;
}

.text-shadow {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.bg-dark {
    background-color:rgb(100, 100, 100);
    color: #f3f1df;
}

.bg-light {
    background-color: #f3f1df;
    color: rgb(100, 100, 100);
}

@media (max-width: 991px) {
    h1 {
        font-size: 2rem!important;
    }
    h2 {
        font-size: 1.25rem!important;
    }
    h3 {
        font-size: 0.6rem!important;   
    }
    p {
        font-size: 0.9rem!important;
    }
    .letter {
        font-size: 3rem!important;
    }
    .fs-4 {
        font-size: 0.75rem!important;
    }
    .col-8{
        width:100%!important;
    }
}