* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 14px;
}

body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.instagram-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
    height: 100vh;
}

.instagram-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.instagram-phone img {
    height: 50rem;
    background-color: rgb(243, 243, 243);
}

.instagram-continue {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    width: 45%;
    min-height: 34rem;
}

.group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    padding: 1.3rem;
    margin-bottom: 1.3rem;
    border: 1px solid lightgray;
}

.group:nth-child(1) {
    min-height: 19rem;
}

.instagram-logo {
    width: 50%;
    
}

.profile-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.profile-photo img {
    height: 8rem;
    border-radius: 50%;
    overflow: hidden;
}

.instagram-login {
    background-color: #0095f6;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
}

.instagram-logout {
    color: #0095f6;
    background-color: #fff;
    margin-top: 1rem;
}

.not-account {
    color: rgb(160, 160, 160);
}

.link-blue {
    color: #0095f6;
}

.get-the-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.dowload {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    padding: 1rem;
}

.app-dowload {
    height: 3rem;
}

.app-dowload img {
    width: 10rem;
}

/*seleção de mídeas (tablet)*/
@media (max-width: 1024px) {
    .instagram-wrapper {
        width: 90%;
    }
}

/*seleção de mídeas (smartphofe)*/
@media (max-width: 660px) {
    .instagram-wrapper {
        width: 90%;
    }

    .instagram-phone {
        display: none;
    }

    .instagram-continue {
        width: 100%;
    }

    .app-dowload {
        height: 2.5rem;
    }

    .app-dowload img {
        width: 8rem;
        height: 100%;
    }

    .group {
        border: 1px solid transparent;
        padding-left: 0;
        padding-right: 0;
    }
}