#header-img{
    background-position: 50% 50%;
    background-image: url(./images/profile-banner.jpeg);
    width: 100%;
    min-height: calc(50px + 15vw);
    background-size: cover;
}

body{
    /* font-family: Arial, Helvetica, sans-serif; */
    font-family: "Barlow", sans-serif;
}

.container{
    text-align: center;
    margin-left: 10%;
    margin-right: 10%;
    height: 0;
}
@media screen and (min-width: 900px){
    .container{
        display: grid;
        grid-template-columns: 1fr 2fr;
        justify-content: space-between;
        gap: 5vw;
        text-align: center;
        margin-left: 10%;
        margin-right: 10%;
        height: 0;
    }

    .right-col{
        overflow-y: auto;
    }
}
@media screen and (max-width: 900px){
    .container{
        max-width: 400px;
    }
}

.left-col{
    padding: 0 4% 4% 4%; /* top right bottom left */
    box-shadow: 2px 2px 15px #7a7a7a;
    margin-bottom: 15px;
    border-radius: 0 0 15px 15px; /* top-left, top-right, bottom-right, bottom-left */
}

.profile-pic img{
    border-radius: 50%;
    height: 150px;
    translate: 0 -50%;
    box-shadow: 2px 2px 15px #7a7a7a;
}

.profile-pic{
    height: 0;
}

.headline{
    padding-top: 80px;
}

.headline h4{
    font-size: 95%;
    line-height: 0.3;
}

.counts{
    display: flex;
    flex-direction: row;
    list-style-type: none;
    align-items: center;
    justify-content: space-around;
    padding: 5% 0 5% 0; /* top right bottom left */
}

.counts li{
    color: #7a7a7a;;
}

.counts li span{
    color: black;
}

.about p{
    text-align: center;
    font-size: small;
    line-height: 1.5;
    opacity: 60%;
    padding: 5% 0 5% 0; /* top right bottom left */
}

.social-media-links{
    margin-bottom: 7%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw 0 5vw; /* top right bottom left */
}

.social-media-links a{
    font-size: x-large;
    text-decoration: none;
    color: black;
}

@media screen and (min-width: 900px){
    .right-col-banner{
        display: flex;
        justify-content: space-between;
        flex-direction: row;
    }
    .right-col-banner div{
        display: grid;
        grid-auto-flow: column;
    }
    .right-col-banner{
        /* overflow: hidden; */
        position: sticky;
        position: -webkit-sticky;
        top: 0;
        background-color: #fff;
    }
}
@media screen and (max-width: 900px){
    body{
        display:flex;
        flex-direction: column;
        align-items: center;
    }
    .right-col-banner div{
        display: block;
    }
    .right-col-banner-text{
        padding-top: 10px;
        padding-bottom: 5px;
    }
    .social-media-links{
        /* max-width: 200px; */
        padding: 0 10vw 0 10vw; /* top right bottom left */
    }
}

.right-col-banner{
    padding: 2% 5% 2% 5%; /* top right bottom left */
}

.right-col-banner div{
    align-items: center;
    font-size: x-large;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}

.container div span.cursor {
    display: inline-block;
    margin-left: 0.1rem;
    width: 1.5px;
    animation: blink 1s infinite;
}
.container div span.cursor.typing {
    animation: none;
}
@keyframes blink {
    0%  { background-color: #000000; }
    49% { background-color: #000000; }
    50% { background-color: transparent; }
    99% { background-color: transparent; }
    100%  { background-color: #000000; }
}

.right-col-banner-buttons{
    display: flex;
    gap: 20px
}

.right-col-banner button{
    font-size: medium;
    padding: 1%;
    border-radius: 1vh;
    /* border: #ffffff00; */
    /* color: #fff; */
    /* width: 6vw; */
    height: 5vh;
    min-width: 75px;
    box-shadow: 1px 1px 5px #7a7a7a;
}

button:hover{
    cursor: pointer;
    opacity: 80%;
}

.fa-facebook-square:hover{
    color: #3b5998;
}
.fa-instagram:hover{
    color: #dc2743;
}
.fa-linkedin-square:hover{
    color: #0072b1;
}
.fa-github-square:hover{
    color: #171515;
}

.right-col-content{
    border-top: 5vh;
    padding: 1%;
    font-size: small;
}