/* global */

/* Regular */
@font-face {
  font-family: "Montserrat";
  src: url('fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url('fonts/Montserrat-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
/* Extra Light */
@font-face {
  font-family: "Montserrat";
  src: url('fonts/Montserrat-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url('fonts/Montserrat-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
}
/* Light */
@font-face {
  font-family: "Montserrat";
  src: url('fonts/Montserrat-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url('fonts/Montserrat-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}
/* Semi Bold */
@font-face {
  font-family: "Montserrat";
  src: url('fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url('fonts/Montserrat-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}
      
.grid-2{
    display: grid;
    /* grid-template-columns: repeat(2,1fr); */
    grid-template-columns: 50% 50%;
}

body{
    margin: 2em;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: normal;
    background-color: #ffffff;
    color: #000000;

}

h1,.white{
    color: #666;
}

h2,.white{
    color: #000;
}

h3,.white{
    color: #000;
}

a{
    color: #000;
    text-decoration: none;
}

p{
    color: #000;
    text-decoration: none;
}

/* section 1 */

.section-1{
    padding-top: 5vh;
    padding-left: 10vh;
    width: 95%;
    text-align: left;
}

.section-1 p{
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    padding-bottom: 10px;
    margin:0;
}

.section-1 h1{
    font-weight: 400;
    font-style: normal;
    font-size: 2.1rem;
    margin-bottom: 10px;
}

.section-1 h2{
    font-weight: 600;
    font-style: normal;
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.section-1 h3{
    font-weight: 400;
    font-style: normal;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.section-1 a{
    font-weight: 200;
    font-style: normal;
    padding: 5px;
    font-size: 1rem;
    padding-left: 0;
    width: 100px;
}

/* section 2 */

.section-2{
    padding-top: 5vh;
    width: 90%;
}

.section-2 h2{
    font-weight: 600;
    font-style: normal;
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.section-2 h3{
    font-weight: 400;
    font-style: normal;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.section-2 p{
    font-weight: 300;
    font-style: normal;
    font-size: 1rem;
    padding-bottom: 10px;
    margin:0;
}

.section-2 a{
    padding: 5px;
    font-weight: 300;
    font-style: normal;
    font-size: 1rem;
    padding-left: 0;
    width: 100px;
}

/* animations / utilities */

.section-1 a:hover{
    font-size: 1.5rem;
    color: #cccccc;
    cursor: pointer;
    transition: 0.2s;
}

.section-2 a:hover{
    font-size: 1.5rem;
    color: #cccccc;
    cursor: pointer;
    transition: 0.2s;
}

.section-2 p:hover{
    font-size: 1.3rem;
    color: #000;
    cursor: pointer;
    transition: 0.2s;
}

.white:hover{
    position: relative;
    padding-left: 10px;
}

/* media queres */

@media(max-width:780px){
    .grid-2{
        grid-template-columns: 1fr;
    }
    .section-1{
        padding:0;
        padding-top: 5rem;
    }
    .section-2{
        padding: 0;
        padding-left: 1.5rem;
        padding-top: 2rem;
    }
}