@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap');*{
    margin: 0;
    padding: 0;
}
body{
    font-size: 14px;
    line-height: 1;
    font-family: 'Quicksand', sans-serif;
}
.container {
    background-image: url(./smis-training-bg.png);
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}
.container:after {
    content:"";
    background: rgba(0, 0, 0, .6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.container * {
    z-index: 9;
    position: relative;
}
.logoWrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    /*background: rgba(255, 255, 255, .2);*/
    position: relative;
    top: 1em;
    padding: 2em 0;
}
h1{
    color: #ECECEC;
    font-size: 52px;
    letter-spacing: 3px;
    margin-top: .2em;
}
