* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    background: #7B7D57 url('../images/background-swirl.svg') no-repeat center;
    background-size: cover;
    color: #FFFFFF;
    display: flex;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.content-container {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.logo {
    height: auto;
    max-width: 250px;
    width: 80%;

}

.content {
    margin-left: 60px;
    text-align: left;
}

h1 {
    font-size: 30px;
}

@media only screen and (max-width: 768px) {
    .content-container {
        align-items: end;
        flex-direction: column;
    }

    .logo {
        max-width: 250px;
    }

    .content {
        margin-left: 0;
        margin-top : 30px;
        text-align: right;
    }

    h1 {
        font-size: 24px;
    }
  }