:root {
    --color: #00FF00;
}

* {
    font-family: 'Poppins';
    font-weight: 500;
}

body {
    margin: 0;
    height: 100dvh;
    max-height: 100dvh;
    width: 100dvw;
    display: flex;


    /* Desktop */
    background-image: url("img/web-1080p.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

h1, h2, h5 {
    color: #ffffff;
}

p {
    color: #ffffff;
    background-color: #1dff1d76;
    border-radius: 18px;
    padding: 14px;
    margin: 0;
    margin-top: 40px;
    font-size: 13px;
    width: max-content;
    max-width: 114%;
}

strong, a, footer span {
    color: var(--color);
}

footer {
    padding-bottom: 20px;
}

footer a {
    background-color: black;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    text-decoration: none;
}
#mobile {
    display: none;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.color-theme {
    color: var(--color);
}

.phones {
    max-height: 100%;
}

/* Mobile (up to 768px) */
@media (max-width: 1400px) {
    body {
        background-image: url("img/mobile-1080p.jpg");
    }

    #mobile {
        display: block;
    }

    #desktop {
        display: none!important;
    }

    .container {
        max-width: 100%!important;
    }

    p  {
        max-width: 100%;
    }

    .phones {
        width: 40%;
    }
}


@media (max-width: 2200px)
{
    .phone {
        width: 90%;
    }
}


.font-height {
    font-size: 12.5px;
}

.position-responsible {
    left: 30px;
}

/* For taller screens */
@media screen and (min-height: 730px) {

    .logo {
        width: 70%;
        margin-bottom: 5%!important;
    }

    p {
        font-size: 18px;
    }

    .font-height {
        font-size: 16px;
    }

    .position-responsible {
        left: 0px;
    }
}

/* For taller screens */
@media screen and (min-width: 1400px) {

    p {
        font-size: 14px;
    }
}

@media screen and (min-width: 1400px) and (max-width: 1750px) {
    h5.font-height {
        font-size: 14px;
    }


    .position-responsible {
        left: 18px;
    }
}

@media screen and (min-width: 1400px) and (max-width: 1500px) {
    .position-responsible {
        left: 30px;
    }
}