

* {
  box-sizing: border-box;
}

@font-face {
    font-family: 'ppneuemontreal';
    src :url(fonts/ppneuemontreal-medium.woff) format('woff');
    font-weight: medium;
}

:root {
     --bgColor: white;
     --selecColor:lawngreen;
     --bigTxtSize: 4vw;
     --black: #000;
     --white: #fff;
     --underLine: 1px solid #000;
     --textFont:"ppneuemontreal", sans-serif;
     --fontWeight: 300;
}

body {
    background-color: var(--bgColor);
    margin: 0;
    padding-left:10vw;
    padding-right:10vw;
    padding-top: 1vh;
    color: var(--black);
    padding-bottom: 10vh;

}


html{
    scroll-behavior: smooth;

}

p{  color: black;
    font-family: var(--textFont);
    line-height: normal;
}

a{
    color: black;
    font-family: var(--textFont);
}


img {
    width:100%;
    margin:0;
    padding-bottom:2vw;
}


video {
  max-width: 100%;
  height: auto;
  margin:0;
  padding-bottom:2vw;
}

 ::selection {
      background-color: var(--selecColor);
    }

    /*.black-bg {
    background-color: #000;}*/

/*-------------------nav----------------------*/
nav{
    display: flex;
    justify-content: space-between;
    margin-bottom: 7vh;
    padding-bottom: 1vh;
    border-bottom: 2px solid black;
}


/*.fix-position{
    position: fixed;
}*/

.logo{
    font-family: var(--textFont);
    font-size: 2vw;
    display: inline-flex;
    align-items: center;
    justify-content: center; 
    border:none;
    background-color:black;
    padding:1.2vw;
    border-radius: 50%;
    width:3vw;
    height:3vw;
    color: black;  
}


.logo:hover{
    background-color: lawngreen;
    color: black;  
}

.logo:hover a{
    color: black;  
}


.logo a{
    color:white;
    text-decoration: none;
}


.link {
    color: black;
    text-decoration: none;
}



nav p {
    margin: 0;
    padding: 0;
    font-size: 2.5vw;
    transition: ease 0.1s;
    letter-spacing: 0;
}

nav p:hover{
     letter-spacing: 0.1vw;
}


/*----------------------projects-----------------*/

.division-block{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 2vw;
}

.division-block p{
    font-family: var(--textFont);
    font-weight: var(--fontWeight);
    font-size:1.5vw;
    text-align: left;
}



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

a:hover{
    background-color: lawngreen;
}




.project-intro {
    margin-top: 3vw;
    margin-bottom: 3vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4vw;
    padding-top: 2vw;
}



.column p{
    font-family: var(--textFont);
    font-weight: var(--fontWeight);
    font-size:1.5vw;
    text-align: left;
    margin: 0;
    padding-bottom: 2vw;

}




@media only screen and (max-width: 900px){

nav {
    margin-bottom: 3vh;
    padding-bottom: 1vh;
}

.logo{
    width: 6.5vw;
    height: 6.5vw;
}

.logo a {
    text-align: center;
    font-size: 3.5vw;
}

nav p {
    font-size: 5vw;
}




.column p{
     /*font-family: var(--mobileText);*/
    font-size:4vw;
}

.project-intro {
    grid-template-columns: 1fr;
}


}






