@font-face {
    font-family: 'Fuchsia Buddha';
    src: url('fonts/fuchsiabuddha.ttf'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bradley Hand ITC';
    src: url('fonts/BRADHI.ttf'); 
    font-weight: normal;
    font-style: normal;
}
* {
    margin: 0;
    --bs-yellow:#ffc107;
    --bs-turquoise: #40e0d0;

    font-family: monospace, monospace; _font-family: 'courier new', monospace; 
    
    color:azure;
}

h1 {
    font-family: 'Bradley Hand ITC', sans-serif;
    /*font-family: 'Fuchsia Buddha', sans-serif;*/
    font-size: 2.0rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    /*color: #00a8a8;*/
    color: #ffffff;
}

/* Target iPhone 12 mini and smaller mobile screens */
@media screen and (max-width: 375px) {
  h1 {
    font-size: 1.6rem; /* Shrinks the text slightly so it fits one row */
  }
}



*, .gqheader, .logo-box, .slogan {
background: #012A2D;
}

.gqheader { 
    display: flex;                  
    flex-direction: column;  
    align-items: center;              
}

.logo-box {   
    margin: 20px 20px 0; 
    padding: 5px;     
}

.slogan {
    margin: 30px;
    padding: 10px;
    border: 3px solid rgb(96, 165, 221);
}

.hero {
    width: 60%;
    margin: 20px;
    padding: 50px;  
}

@media screen and (max-width: 375px) {
    h3 {
        white-space: nowrap;
    }
    .hero {
        width: 70%;
        margin: 10px 20px;
        padding: 20px;
    }
}

@media (min-width: 576px) {
    .gqheader {       
        font-size: 0.9em;
    }
}

@media (min-width: 768px) {
    .gqheader {       
        font-size: 1em;
    }
}

@media (min-width: 992px) {
    .gqheader {       
        font-size: 1.1em;
    }
}

@media (min-width: 1200px) {
    .gqheader {    
        font-size: 1.2em;
    }
}

@media (min-width: 1400px) {
    .gqheader {
        font-size: 1.3em;
    }
}

@media (min-width: 1600px) {
    .gqheader {
        font-size: 1.4em;
    }
}

/* Base social link styling */
.social-link {
    position:fixed;
    bottom: 40px;
    color: #808080;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    transition: color 0.3sec ease;
}

.social-link, 
.social-link i {
    transition: color 0.3s ease;    
}

.social-link:hover,
.social-link:hover i {
    color: #40e0d0 !important; /* !important ensures Font Awesome's internal styles are overridden */
    font-size: 18px;
}

.fixed-left {
    left: 40px;
    
}

.fixed-right {
    left: 70px;
    
}