
*{
    box-sizing: border-box;
}

/* Change this to your brand colour */
:root {
    --brand-colour:#9292a1;
}


/* Document Typgraphy (Do not touch) */
html{
    font-size: 1.25em;
    color: #333333;
    line-height: 1.4;
    scroll-behavior: smooth;
}

/* Header Styles (Do not touch) */
header{
    position: fixed;
    top:0;
    background-color: #ffffff;
    padding: 25px 0 0 0;
    width: 100%;
    z-index: 9999;
}

header img{
    margin: 0 auto;
    max-width:350px;
}

nav{
    background-color: #ffffff;
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    

    padding-top: 30px;
    padding-bottom: 15px;
    text-align: center;

}

.nav-item{
    color: #131313;

    margin: 40px;
    text-decoration: none;
    transition: 0.2s ease-in;
}


.nav-item:hover{
    color: #ffffff;
    background-color: var(--brand-colour);


    margin: 40px;
    padding: 0 10px 0 10px;
    text-decoration: none;
    transition: 0.2s ease-out;
    transform: scale(105%);
}

main{
    margin-top: 160px;
    background-color: #fafafa;
}

/* Change the background image here*/
.wrapper-title{
    background-image: url(./images/AdobeStock_214482847.jpeg);

    height: 600px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}







h1, h2, h3, h4{
    font-family: "tt-commons-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
}


body{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}



h1{
    color: #ffffff;
    background-color: var(--brand-colour);
    
    width: fit-content;
    font-size: 90px;
    margin: 0;
    padding-inline: 1rem;
}

h2{
    color:#131313;
}

h3{
    color: #131313;

}

h4{
    color: #aaaaaa;
    margin: 0;
    font-weight: 300;
    font-style: italic;
    font-size: 0.75em;
}

h5{
    font-weight: 600;
    font-size: 1em;
}

p{
    margin: 1.4em 0;
}




/* layout (Do not touch) */
.wrapper{
    padding: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

img{
    display: block;
}

hr {
    display: block;
    margin-top: 50px;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 1px;
    opacity: 0.5;
  }


/* hack to bump section down for anchor... (Do not touch) */
section:before {
    content: "";
    display: block;
    height: 170px;
    margin: -170px 0 0;
}


/* main styles (Do not touch) */
main img{
    max-width: 100%;
}


main iframe{
    width:100%;
    aspect-ratio: 16 / 9;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 100px;
}



/* footer styles */
footer{
    background-color: #191919;
}

footer p{
    margin: 0;
    text-align: center;
    color:white;
}