body {
    overflow: hidden;
    margin: 0;
    font-size: 1rem;
    font-family: 'IBM Plex Sans', sans-serif;
}

.main {
    width: 100vw;
    height: 100vh;
    position: relative;
    background: url('./images/background.svg') no-repeat;
    background-size: 100%;
    background-position: top;
}

.info {
    color: #212121;
    width: 25.8125rem;
    text-align: center;
    margin: 0 auto;
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
}

.info .heading {
    font-size: 2.25rem;
    line-height: 2.9375rem;
    font-weight: 700;
    margin: 0 0  1.5rem;
}

.info .text {
    font-size: 1.125rem;
    line-height: 1.4375rem;
    margin: 0;
    font-weight: 500;
}

.image {
    display: none;
    margin: 0;
}

.logo {
    margin-bottom: 2rem;
    width: 9.375rem;
    height: auto;
}

@media only screen and (max-width: 1200px) {
    .main {
        background-position: center;
    }
}

@media only screen and (max-width: 768px) {
    .main {
        background: none;
    }

    .info {
        top: 50%;
        transform: translateY(-50%);
    }

    .image {
        display: block;
        position: absolute;
        width: 50%;
        opacity: .5;
    }

    img {
        width: 100%;
        height: auto;
    }

    .image-left {
        left: 0;
    }

    .image-right {
        right: 0;
        bottom: 0;
    }
}

@media only screen and (max-width: 576px) {

    .info {
        width: calc(100% - 2rem);
        left: 1rem;
        right: 1rem;
    }

    .info .heading {
        font-size: 1.75rem;
        line-height: 2.25rem;
        margin: 0 0 1rem;
    }

    .info .text {
        font-size: 1rem;
    }
  }
