@charset "UTF-8";

*{
    box-sizing: border-box;
    margin: 0px;
}

body, html {
    height: 100%;
    margin: 0;
}

img{
    max-width: 100%;
    line-height: 0;
    display: block;
}

h1{
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 60px;
}

h2{
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 48px;
    color: white;
    text-align: left;
    padding-bottom: 80px;
}

h3{
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 36px;
    color: white;
}

p{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8em;
    color: #a1aab3;
    text-align: left;
}

#main_container{
    width: 100%;
    height: 100%;
}

.container{
    position: inherit;
    max-width: 1200px;
    overflow: hidden;
    padding: 130px 15px;
}

.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}

button {
    text-decoration: none;
    cursor: pointer;
}

a:link, a:visited, a:active{
    text-decoration: none;
}
