
.navbar-brand{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.navbar-logo-text { /*change for smaller devices*/
    padding-top: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Roboto Mono', monospace;
    color: white;
}

.container-fluid {
    background-color: #3F4036;
}

.about-img { /*change for smaller devices*/
    background-image: url("./images/forest.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    
  }

.about-txt{ /*change for smaller devices*/
    font-size: 4em;
    font-family: 'Caveat', cursive;
    font-family: 'Libre Baskerville', serif;
    font-family: 'PT Sans', sans-serif;
    text-shadow: 1px 1px 20px black;
    margin-left: 50px;
}

span{
    color: #D9CAAD;
}

.experience-container{
    background-color: black;
}

.experience-text{
    text-align: center;
    font-size: 4rem;
}

.contact-container{
    background-color: #3F4036;
}

@media (min-width: 992px){
    #navbarNav {
        display: flex;
        justify-content: end;
    }

    }

@media all and (max-width: 768px){

    .about-img { /*change for smaller devices*/
        background-image: url("./images/forest.jpeg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
      }

      .about-txt{ /*change for smaller devices*/
        font-size: 1.8em;
        font-family: 'Caveat', cursive;
        font-family: 'Libre Baskerville', serif;
        font-family: 'PT Sans', sans-serif;
        text-align: center;
        margin-left: 0px;

    }

    .about {
        padding-bottom: 50vh;
    }

    }

/*

small 567px
medium 768px
large 992px
extra large 1200px


*/