/*===============GLOBAL================*/
:root {
    font-size: 62.5%; /*makes default size 10px*/
    -webkit-text-size-adjust: 100%; /* prevent font scaling in mobile landscape while allowing user zoom */
    width: 100%;
}
body {
    background: black;
    font: 400 1.6rem/1.5 'Golos Text', sans-serif;
    margin: 0;
}
* {
    box-sizing: border-box;
    margin:0;
    padding: 0;
}

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

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