* {
    box-sizing: border-box;
}

body {
    background-size: cover;
    background-position: 75% 0;
    background-image: url('bg.jpeg');
    background-repeat: no-repeat;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #fff;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.text {
    margin: 0;
    font-size: 40px;
    font-weight: 100;
    letter-spacing: 3px;
}

.logo {
    position: relative;
    background: url('logo.png') top left no-repeat;
    background-size: 100%;
    width: 225px;
    min-height: 48px;
    margin: 0;
    margin-left: -15px;
}

.container {
    height: 30%;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.logo span {
    display: block;
    position: absolute;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 4px;
    bottom: -9px;
    left: 33px;
}

footer {
    text-align: center;
    padding: 15px;
    font-size: 12px;
    position: absolute;
    left: 0;
    width: 100%;
}


@media (min-width: 768px) { 
    body {
        background-position: top right;
    }
    .text {
        font-size: 60px;
    }
    .logo {
        width: 282px;
        min-height: 58px;
        margin-left: -20px;
    }
    .logo span {
        font-size: 13px;
        bottom: -17px;
        left: 40px;
    }
    .container {
        height: 50%;
    }
    footer {
        text-align: right;
    }
}