@charset "utf-8";
/* CSS Document */
@font-face {
  font-family: 'Colfax';
  src: url(font/Colfax-Regular.otf) format('truetype');

}
body {
  	font-family: 'Colfax';
	line-height: 1.25;
}
nav {
  	font-family: 'Colfax';
	color: #263238;
  	text-decoration: none;
}


.directory-image-text-container {
  position: absolute;
  text-align: center;
}

.directory-image-title-text {
  font-size: 100px;
  color: black;
}

.directory-image-subtitle-text {
  font-size: 24px;
  color: black;
  margin-top: 20px;
}

.directory-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 400px;
}

	.grid-directory {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    grid-gap: 20px;
    padding: 20px;
					}
		
  .directory-box {
    background-color: #F5F5F6;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    width: 400px;

    margin: 50px auto;
  }
		
  .directory-box-title {
    font-size: 18px;
    font-weight: bold;
    margin: 20px;
  }

  .directory-box-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .directory-box-text {
	font-size: 16px;

    margin: 20px;

  }

.directory-box-link:hover .directory-box {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  text-decoration: none; 
  color: inherit; 
}


		.tutorial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  max-width: 1600px;
}

      .tutorial-tile {
        width: 640px;
        height: 360px;
        float: left;
        margin: 50px;
        position: relative;
		  
      }
      
      .tutorial-tile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      
      .tutorial-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #000000C5;
		color: #ffffff;
        overflow: hidden;
        width: 640px;
        height: 100px;
        padding: 10px;
        box-sizing: border-box;
      }
      
      .tutorial-title {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 5px;
      }
      
      .tutorial-subtitle {
        font-size: 16px;
        margin-bottom: 5px;
      }
      
      .tutorial-text-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 5px;
      }
      
      .tutorial-text-col {
        width: 33%;
        text-align: center;
      }












