/* global rules */
* {
    -moz-box-sizing: border-box;
    -webkit--box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: 'Aeonik TRIAL';
    margin: 0;
    color: white;
}

/* start landing */
.landing {
    background-image:url(../imgs/Rectangle.png);
    background-size:cover;
    width: 100vw;
    height:100vh;
    background-repeat: no-repeat;
    background-position: 70% 50%;
    padding: 3rem;

}

.landing > div {
    height: 100%;
        display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}
.landing > div h1 {
    font-size: 3rem;
}
.landing > div p  {
    font-size: 1.5rem;
    margin-bottom: 0px;
}
@media ( min-width:1200px) {
    .landing > div h1 {
        font-size: 10rem;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .landing > div h1 {
        font-size: 7rem;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .landing > div h1 {
        font-size: 5rem;
    }
}
