@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #191919;
}

header {
    margin-top: 55px;
    background-color: #191919;
    display: grid;
    grid-template-columns: auto 1200px auto;
    color: #FFFFFF;
}

header a {
    text-decoration: none;
    color: #FFFFFF;
    margin-right: 20px;
    font-style: italic;
}

header a:hover {
    text-decoration: underline;
}



.profile {
    display: grid;
    grid-template-columns: 25% auto;
    margin: 40px 0px;
}

.profile img {
    border: solid 15px #111111;
}

.profile .pic-l {
    text-align: right;
    margin-right: 35px;
}

.profile .pic-s {
    text-align: center;
    display: none;
}

.profile h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
    margin-top: 40px;
}

.profile h2 {
    margin-top: 0px;
    margin-bottom: 35px;
    font-size: 1.4em;
    font-weight: normal;
}

.badge {
    font-size: 0.9em;
    font-weight: bold;
    display: inline-block;
    padding: 4px 8px;
    background-color: #f0161e;

}




@media screen and (max-width: 990px) {
    header {
        grid-template-columns: auto 890px;
    }

    .profile .pic-l {
        display: block;
    }

    .profile .pic-s {
        display: none;
    }


}

@media screen and (max-width: 600px) {
    body {
        background-color: #191919;
    }


    header {
        grid-template-columns: auto;
    }

    header a {
        display: block;
        margin-bottom: 12px;
    }

    .profile .pic-l {
        display: none;
    }

    .profile .pic-s {
        display: block;
        margin-bottom: 25px;
    }

    .spacer-l {
        display: none;
    }

    .profile {
        grid-template-columns: auto;
    }

    .badges,
    .profile {
        text-align: center;
    }
}