@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;900&display=swap');

body {
    margin: 0;
    height: 100vh;
    background: #253231;
}

.teleport-lemon {
    display: inline-flex;
    padding: 98px 121px 0 121px;
    justify-content: center;
    align-items: center;
    background: #253231;
    font-family: 'Lato', sans-serif;
    width: -webkit-fill-available;
}

.teleport-lemon img {
    max-width: 100%;
    flex-shrink: 0;
}

.access-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 49px;
}

.access-description {
    color: #fff;
}

.access-description h1 {
    font-size: 34px;
    font-weight: 700;
    line-height: 46px;
    letter-spacing: 0.34px;
    margin: 0;
    padding-bottom: 8px;
}

.access-description h5 {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
    padding: 32px 0 8px 0;
}

.access-description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    padding-bottom: 25px
}

.mobile-access-img {
    display: none;
}


@media only screen and (max-width: 1280px) {
    .teleport-lemon{
        padding-left:75px;
        padding-right:75px;
    }
}
@media only screen and (max-width: 1000px) {
    .teleport-lemon{
        padding-left:30px;
        padding-right:30px;
    }
}
@media only screen and (max-width: 850px) {
    .mobile-access-img {
        display: block;
        max-width: 100%;
        flex-shrink: 0;
        margin: auto;
    }

    .desktop-access-img {
        display: none;
    }

    .teleport-lemon {
        padding: 0;
    }

    .access-description {
        text-align: center;
        padding: 0 20px;
    }

    .access-description h1 {
        padding-top: 25px;
        padding-bottom: 15px;
        font-size: 22px;
        line-height: 32px;
    }

    .access-description h5 {
        padding: 0 0 16px 0;
        font-size: 16px;
        line-height: 24px;
    }

    .access-description p {
        font-size: 16px;
        line-height: 24px;
    }
}