@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;

}
.done {
    color: #3797f0;
    font-size: 1.5rem;
}
.status {
    font-weight: 700;
    text-transform: uppercase;
    color: #3797f0;
}
.title, .sub-title, .bio-title {
    text-align: center;
    margin: 0;
}
.sub-title {
    font-weight: 300;
    font-size: 1.1rem;
}
.image-container {
    margin: 10px 0;
}
.image-container img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
}
.bio-title {
    font-size: 1.1;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
}
.bio {
    text-align: justify;
    font-size: 1.1rem;
    font-weight: 300;
}
.bio li {
    list-style-type: none;
}
.socials {
    text-align: center;
}
.socials a {
    font-size: 32px;
    margin: 10px;
    color: #111111;
}

.phone-number {
    text-decoration: none;
    color: #111111;
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    text-align: center;
}
.socials a:hover, .phone-number:hover {
    color: #3797f0;
}


.extended-title {
    margin: 0;
    font-size: 1.5rem;
    display: inline-block;
    position: relative;
    top: 5px;
}
.extended-sub-title {
    text-align: right;
    margin: 0;
    font-size: 1.5rem;
    position: relative;
    top: 22px;
}
.extended-bio-title {
    font-size: 1.1;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 20px;
}
.extended-avatar {
    display: inline-block;
    width: 64px;
    border-radius: 50%;
    margin-right: 10px;
}
#extended-version {
    height: 90vh;
    display: flex;
    align-items: center;
}
.blue-link {
    color: #3797f0;
    text-decoration: none;
}
.blue-link:hover {
    color: #2d4289;
}
#mobile-version {
    display: none;
}

@media screen and (max-width: 850px) {
    #mobile-version {
        display: block;
    }
    #extended-version {
        display: none;
    }
}
