@font-face {
    font-family: 'gt_americaregular';
    src: url('font/gt-america-regular-webfont.woff2') format('woff2'),
         url('font/gt-america-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'gt_americaitalic';
    src: url('font/gt-america-regular-italic-webfont.woff2') format('woff2'),
         url('font/gt-america-regular-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

* {
    margin:0;
    padding:0;
    font-variant-numeric: normal;
}


body{
    top:0;
    padding: 0;
    margin: 0;
    font-family:"gt_americaregular", Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}

#screen{
    position: absolute;
    top:0;
    margin:0;
    padding: 0;
}


.global-container{
    width: 100%;
    height: 200vh;
    position: relative;
    margin:0;
    top:-2rem;
}

.container-1{
    z-index: 1;
    position: sticky;
    top: 0;
    margin: 0;
    margin-top: -1rem;
}

.container-2{
    z-index: 2;
    position: sticky;
    top: 0;
}

.container-3{
    z-index: 3;
    position: sticky;
    top: 0;
}

.container-4{
    z-index: 4;
    position: sticky;
    top: 0;
}

.container-5{
    z-index: 5;
    position: sticky;
    top: 0;
}

.bg-image{
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: black;


}

.text-position{
    position: sticky;
    height: auto;
    top: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    width: calc(100%-2rem);
    margin: 1rem;
}

.text-container{
    position: relative;
    height: auto;
    top: 100%;
    bottom: 0;
    left: 0;
    color: white;
}

.project-title{
    font-size: 2.4rem;
    padding: 1rem;
    padding-bottom: 0;
    margin-left:-1rem;
    text-wrap: nowrap;
    letter-spacing: -0.15rem;
}

.project-text{
    backdrop-filter: blur(10px);
    width: 40%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    height: auto;
    overflow-y: hidden;
    border-radius: 0.6rem;
}


.image-1{
    background-image: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.5)), url("img/augusta2.jpg");
    background-position: center center;
}

.image-2{
    background-image: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.5)), url("img/quarter1.jpg");
    background-position: center center;
}

.image-3{
    background-image: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.5)), url("img/canopy1.jpg");
    background-position: center center;
}

.image-4{
    background-image: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.5)), url("img/acc1.jpg");
    background-position: center center;
}

.image-5{
    background-image: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.5)), url("img/augusta1.jpg");
    background-position: center center;
}




/*------TOP LAYER-----*/

#top-layer{
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    top:0px;
}

header{
    position: fixed;
    top:0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    white-space: nowrap;
    container-type: inline-size;
    container-name: header-top;
}

.logo{
    width: 100%;
    height: 100%;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
}

.logo > img{
    max-width: 100%;
    max-height:80%;
}

.info-wrapper{
    width: 100%;
    height: 100%;
    padding: 1rem;
    padding-left: 0;
    display: flex;
    left:0;
    gap: 5rem;
    color: white;
}

.info-copyright{
    display: none;
}

.info-wrapper-mobile{
    display: none;
}

@container header-top (width < 800px) {
  .info-wrapper {
    display: none;
  }

  .info-wrapper-mobile {
    display: block;
    flex-direction: column;
    gap:1rem;
    padding-top: 1rem;
    padding-left: 0;
    display: flex;
    left:0;
    gap: 1rem;
    color: white;
  }

  .info-copyright{
    display: block;
}
}

.underconstruction{
    width: 100%;
    height: 100%;
    padding: 1rem;
}

.underconstruction > img{
    height:max-content;
    max-width: 100%;
    right: 0;
}

.copyright{
    position: fixed;
    color: white;
    text-align: right;
    padding: 1rem;
    bottom: 0;
    right: 0;
}

@media (width <= 800px) {

    .logo{
        padding-right: 1rem;
    }

    .copyright{
        display: none;
    }

    .text-position{
        width: calc(100% );
        margin:0;
    }

    .project-title{
        text-wrap: wrap;
        margin-left: 1rem;
        padding:0;
        padding-bottom: 0.5rem;
    }

    .project-text{
    backdrop-filter: blur(10px);
    width: auto;
    padding: 1rem;
    display: flex;
    max-height: 35dvh;
    max-height: 35vh;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 0;
    }
}