html, body {
    margin:0;
    padding:0;
    width: 100vw;
    height: 100vh;
}

a {
    text-decoration: none;
    color:  black;
}

@font-face {
    font-family: 'blair';
    src: url('/fonts/Blair.ttf');
    font-weight: normal;
    font-style: normal;
} 

@font-face {
    font-family: 'Druk';
    src: url('/fonts/DrukMedium.otf');
    font-weight: normal;
    font-style: normal;
} 

#page_container {
    font-family: 'druk', sans-serif;
    font-size: 1vw;
    display: grid;
    grid-template-columns: 20vw 60vw 20vw;
    grid-template-rows: 10vh 83vh 7vh;
    justify-content: space-between;
    align-content: space-between;
    gap: 0px;
    padding: 0px;
    grid-template-areas: 
    "header_left header_centre header_right"
    "content_left content_centre content_right"
    "footer_left footer_centre footer_right"

}

.centred_text_container {
    position: relative;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1vh;
}

/*********************************************/
/************** Header areas *****************/
/*********************************************/


/******************** Left *******************/

#header_left {
    text-align: center;
    background-color: yellow;
    grid-area: header_left;
}


#logo_text {
    font-size: 2vw;
    line-height: 0.5vh;
    font-family: 'Druk', sans-serif;
}

/******************* Centre ******************/

#header_centre {
    text-align: center;
    background-color: lime; 
    grid-area: header_centre;  
}

#header_centre_text {
    font-size: 3.5vw;
    line-height: 0.5vh;
    font-family: 'Druk', sans-serif;
}

/******************* Right ******************/

#header_right {
    font-size: 1vw;
    text-align: center;
    background-color: yellow; 
    grid-area: header_right;   
}


/*********************************************/
/************ Main content areas *************/
/*********************************************/

#content_centre {
    background-color: lightgray;
    grid-area: content_centre;
    display: grid;
    grid-template-columns: 30vw 30vw;
    grid-template-rows: 10vh 70vh;
    justify-content: space-between;
    grid-template-areas:
    "content_centre_headline content_centre_headline"
    "content_centre_left content_centre_right"
}

#content_centre_headline {
    display: grid;
    grid-area: content_centre_headline; 
    background-color: orange; 
}

#content_centre_headline_text {
    text-align: center;
    font-size: 1.75vw;
    font-family: 'Druk', sans-serif;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0%);
    line-height: 10vh;
}

#content_centre_left {
    background-color: aqua;
    display: grid;
    grid-area: content_centre_left; 
}

#content_centre_right {
    background-color: pink;
    display: grid;
    grid-area: content_centre_right;
}

#content_centre_right p {
    width: 12em;
    line-height: 2vh;
}

#content_centre img {
    display:grid;
    margin-top: 15vh;
    margin-left: -10vw;
    height: 50vh;
    width: 50vw;
    object-fit: scale-down;
}



/*********************************************/
/*************** Footer areas ****************/
/*********************************************/

/*************** Footer left *****************/

#footer_left {
    text-align: center;
    grid-area: footer_left;
    background-color:   rgb(45,45,45);
    color: white;
}

/************** Footer centre ***************/

#footer_centre{
    text-align: center;
    grid-area: footer_centre;
    background-color:   rgb(45,45,45);
    color: white;
}

#footer_centre a {
    text-decoration: underline;
    text-decoration-color: white;
    color: white;
}

#contact_text {
    line-height: 2vh;
}
/************** Footer right ****************/

#footer_right {
    text-align: center;
    grid-area: footer_right;
    background-color:   rgb(45,45,45);
    color: white;
}




