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

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

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

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

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

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

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

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

.diogram-logo {
    height: 3rem;
    background-color: black;
}

.profile-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #7349C8;
    overflow: hidden;
}

.profile-photo img {
    height: 6rem;
}

.diogram-login {
    background-color: #7349C8;
    color: #ffffff;
    padding: 8px;
    border-radius: 4px;
}

.diogram-logout {
    color: #3090EB;
    margin-top: 1rem;
}

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

.link-blue {
    color: #3090EB;
}

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

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

.app-download {
    height: 3rem;
    width: 10rem;
    background-size: cover;
    border: 1px solid gainsboro;
    border-radius: 8px;
}

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

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

/* media queries */


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

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

    .diogram-wrapper {
        width: 90%;
    }

    .diogram-phone {
        display: none;
    }

    .diogram-continue {
        width: 100%;
    } 
    
    .group {
        border: 1px solid transparent;
    }
}

