/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/

/* font-family: 'Karla', sans-serif; */

.header {
    position: relative;
    width: 100%;
    height: 60vh;
    background-color: rgb(22, 22, 22);

}

.hero_text {
    position: relative;
    display: inline-block;
    top: 40vh;
    left: 15%;
    line-height: 6rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    font-size: 7rem;
}



.about_container {
    position: relative;
    width: 100%;
    height: auto;
    background-color: rgb(22, 22, 22);
    padding-bottom: 10rem;
}

.tjhoko_about_info_text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    display: flex; /* Enable flexbox */
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    gap: 4rem; /* Add spacing between the boxes */
    justify-content: center; /* Center the boxes horizontally */
    
}

.tjhoko_about_info_text .box-1,
.tjhoko_about_info_text .box-2 {
    flex: 2 2 40%; /* Allow boxes to grow, shrink, and take up 45% of the container */
    min-width: 200px; /* Set a minimum width to prevent boxes from becoming too small */
    padding: 1rem; /* Add padding inside the boxes */
    
}

.client_logo {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 2rem 0 2rem;
  
}

.client_logo img {
  width: 10%;
  height: auto;
  display: block;
}

.projects_container {
    position: relative;
    width: 80%;
    height: auto;
    background-color: rgb(22, 22, 22);
    padding: 2rem; /* Add padding for spacing around the content */
  }
  
  .project_header{
    position: relative;
    display: block;
    padding: 2rem 0 2rem;
    color: rgb(242, 242, 242);
    letter-spacing: 0.2rem;
    font-size: 2rem;
    
  }

  .image_gallery{
    position: relative;
    left: 50%;
    transform: translate(-50%);
    justify-content: center;
    width: 80vw;
  }
  
  .project_disclaimer{
    position: relative;
    height: 10vh;
    width: 40vw;
    color: rgb(242, 242, 242);
    display: inline-block;
    top: 1rem;
    left: 10%;
    font-size: 1rem;
    line-height: 2rem;
    font-weight: 300;
    font-kerning: normal;
    color: rgb(242, 242, 242);
  }