* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    background: #0A0A0A;
    color: white;

}

main{
    margin-left: 2%;
    margin-right: 2%;
}

.page {
    max-width: 100%;
    margin: 0 auto;
}

/* HEADER */

header{
  position: fixed;
  display: flex;
  width: 100%;
  margin-top: 2%;
  padding-right: 2%;
  justify-content: flex-end;
  z-index: 2;
  mix-blend-mode: difference;
}

#btn-container{
  border: none;
  display: grid;
  grid-template-columns: repeat(4,25%);
  place-items: center;
  width: 700px;
}

.head-btn{
    text-decoration: none;
    color: var(--white);
    border: none;
    opacity: 90%;
    width: 100%;

}

.head-btn:hover{
    font-weight: 600;
}

/* body content */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-top,
.hero-overlay-bottom{
    position: absolute;
    width: 100%;
    height: 339px;
    left: 0;
}

.hero-overlay-top {
    top: 0;
    background: linear-gradient(
        180deg,
        #0A0A0A 0%,
        rgba(10,10,10,0) 100%
    );
}

.hero-overlay-bottom {
    bottom: 0;
    background: linear-gradient(
        0deg,
        #0A0A0A 0%,
        rgba(10,10,10,0) 100%
    );
}

.project-header {
    margin-top: 41px;
    margin-bottom: 240px;
}

.project-header h1 {
    width: 70%;
    font-family: "Ovo", serif;
    font-size: 128px;
    font-weight: 400;
    margin-bottom: 60px;
}

.divider {
    height: 3px;
    background: white;
    margin-bottom: 60px;
}

.project-info {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.project-info div{
    font-family: "helvetica-neue-lt-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

.description{
    grid-row: 1/3;
    height: 100%;
}

.team {
    grid-column: 2/4;
    grid-row: 2;
    max-width: 500px;
}

.image-section {
    padding: 0 0 80px;
}

.image-section img {
    width: 100%;
    display: block;
}

.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 153px;
    margin-bottom: 240px;
}

.content-section p {
    font-size: 20px;
    line-height: 1.4;
}

.gallery {
    padding: 0 0 80px;
}

.gallery img {
    width: 100%;
    height:100%;
    display: block;
    margin-bottom: 30px;
    object-fit: cover;
}

.gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

footer {
    padding: 120px 0;
    text-align: right;
}

#next-project{
    color: white;
    text-decoration: none;
}

#next-project:hover{
    font-weight: 600;
}

/* TYPOGRAPHY */

.heading{
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 64%;
}

p{
    font-family: "helvetica-neue-lt-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}
/* 
Ovo
  font-family: "Ovo", serif;
  font-weight: 400;
  font-style: normal;

Helvetica Neue LT Pro 55 Roman
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;

Helvetica Neue LT Pro 75 Roman 
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
*/