@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=PT+Sans+Caption:wght@400;700&display=swap');

.pt-sans-caption-regular {
    font-family: "PT Sans Caption", sans-serif;
    font-weight: 400;
}

.pt-sans-caption-bold {
    font-family: "PT Sans Caption", sans-serif;
    font-weight: 700;
}

.noto-sans-regular {
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background-color: #FFFCF0;
    padding: 0 3%;
    scrollbar-width: none;
}

h1 {
    font-family: "PT Sans Caption", sans-serif;
    font-weight: 700;
    font-size: 50px;
    color: #143143;
    margin: 0;
}

h2 {
    font-family: "PT Sans Caption", sans-serif;
    font-weight: 400;
    font-size: 35px;
    color: #143143;
    margin: 0;
}

p, ol {
    font-family: "Noto Sans", sans-serif;
    font-size: 20px;
    color: #143143;
    font-weight: 300;
    margin: 10px 0;
}

a {
    text-decoration: none;
    color: #143143;
}

button {
    font-family: "PT Sans Caption", sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: #FFFCF0;
    background-color: #0B5989;
    border: none;
    border-radius: 50px;
    width: 250px;
    height: 65px;
    margin: 10px 25px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

button:hover {
    box-shadow: 0 2px 10px #0e68a088;
}

.title-container {
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
    border-radius: 7px;
}

.title-track {
    display: inline-block;
    animation: carousel 20s linear infinite;
    white-space: nowrap;
}

.title-text {
    font-family: "PT Sans Caption", sans-serif;
    font-size: 75px;
    color: #0B5989;
    display: inline;
}

@keyframes carousel {
    0% { 
        transform: translateX(0%); 
    }
    100% { 
        transform: translateX(-50%); 
    }
}

.project-img {
    display: block;
    margin: 20px auto;
    border: 10px solid #0B5989;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
}

.label-text, .center-label, .thirds-label {
    font-family: "PT Sans Caption", sans-serif;
    font-weight: 800;
    color: #0B5989;
    margin: 20px;
}

.center-label {
    text-align: center;
}

.description-wide {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
}

.label-text {
    width: 25%;
    min-width: 330px;
    text-align: right;
}

.description {
    width: 70%;
    margin-left: 10px;
}

.display-thirds {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
}

.outer-third, .inner-third {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.inner-third {
    border-left: 2px solid #0B5989;
    border-right: 2px solid #0B5989;
}

.process-img, .prototype-img {
    border-radius: 50px;
    border: 10px solid #0B5989;
}

#creating-prototype {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

#creating-prototype .label-text {
    text-align: center;
    margin: 20px 0;
}

.prototype-display {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    margin: 20px 0;
}

.prototype-link {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.nav-link {
    font-family: "Noto Sans", sans-serif;
    text-decoration: none;
    margin: 30px;
    margin-top: 0;
    margin-left: 50px;
}

.nav-link:hover {
    text-shadow: 0 2px 5px #ffebf3d3;
}

#top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
  
.logo {
    margin: 10px;
}

@media (max-width: 768px) {
    .description-wide {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .description-wide .label-text {
      width: auto;
      min-width: unset;
      text-align: center;
      margin: 10px 0;
    }
  
    .description-wide .description {
      width: 100%;
      margin-left: 0;
    }
  
    .display-thirds {
      flex-direction: column;
      align-items: center;
    }
  
    .inner-third {
      border: none;
      border-top: 2px solid #0B5989;
      border-bottom: 2px solid #0B5989;
    }
  
    .prototype-display {
      flex-direction: column;
      align-items: center;
    }
  
    .project-img, .process-img, .prototype-img {
      width: 90%;
      height: auto;
    }
  
    #top-nav {
      flex-direction: column;
      align-items: center;
    }
  
    .logo {
      margin: 10px 0;
    }
  
    .nav-link {
      margin: 10px 0;
    }
  
    .title-text {
      font-size: 40px;
    }
  
    button {
      width: 200px;
      height: 55px;
      font-size: 16px;
    }
}
  

@media (max-width: 1050px) and (min-width: 769px) {
    .display-thirds {
      gap: 10px;
      justify-content: space-between;
    }
  
    .outer-third, .inner-third {
      padding: 5px;
    }

    .prototype-display {
        justify-content: center;
        gap: 10px;
    }
    
    .prototype-img {
        width: 45%;
        height: auto;
    }

    .nav-link {
        font-size: 16px;
        margin-left: 20px;
    }
}
  
