@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100;8..144,200;8..144,300&display=swap');


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

body {
    width: 100%;
    min-height: 100vh;
    background-color: rgb(250, 250, 250);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.instagram-wrapper {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 60%;
    height: 80vh;
}

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

.instagram-phone img {
    height: 50rem;
}

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

.group {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    width: 350px;
    padding: 1.3rem 0;
    border: 1px solid lightgray;
}

.group:nth-child(1) {
    min-height: 22rem;
    margin-bottom: 20px;
    margin-top: 60px;
}

.instagram-logo {
    height: 3rem;
}

.profile-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
}

.profile-photo img {
    width: 100px;
}

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

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

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

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

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

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

.app-download {
    height: 3rem;
    width: 10rem;
    background-size: cover;
}

.app-download:nth-child(1) {
    background-image: url('./img/apple-button.png');
}

.app-download:nth-child(2) {
    background-image: url('./img/googleplay-button.png');
}

footer {
    width: 65%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-shrink: 3;
    align-self: center;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 16px;
    min-width: 400px;
    margin-bottom: 5px;
}

footer a{
    display: flex;
    flex-wrap: wrap;
    color: #8e8e8e;
    padding: 0.5rem;
    font-size: 12px;
}
.footer-bottom{
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    justify-content: center;
    margin-bottom: 15px;
    
}

.footer-bottom p{
    color: #8e8e8e;
    margin-left: 20px;
    font-size: 12px;
}

.footer-bottom select{
    border: none;
    color: #8e8e8e;
    background-color: rgb(250, 250, 250);
    font-size: 12px;
}

.footer-bottom select:focus{
    outline: 0;
}

/* media queries */


@media (max-width: 1024px) {
    .instagram-wrapper {
        width: 90%;
    }
    footer{
        width: 80%;
    }
}

@media (max-width: 720px) {
    body {
        background-color: #ffffff;
    }

    .instagram-wrapper {
        width: 90%;
    }

    .instagram-phone {
        display: none;
    }

    .instagram-continue {
        width: 100%;
    }
    
    .group {
        border: 1px solid transparent;
    }
    footer{
        width: 80%;
    }
    .footer-bottom{
        margin-bottom: 20px;
    }
}