@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff;
}

/* Mobile 1st */

.container {
    position: relative;
    display: block;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    overflow: hidden;
    /*background-color: yellow;*/
}

.container__content {
    position: relative;
    top: -100px;
    margin: 30px;
    /*background-color: yellowgreen;*/
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #dd1b16;
    height: 230px;
    border-bottom: 3px solid #9c9c9c;
}

header > #name {
    position: relative;
    top: -40px;
    padding: 15px;
    display: block;
    font-size: 22px;
    color: #ffffff;
    text-align: center;
}

header > #profession {
    position: relative;
    display: inline-block;
    padding: 15px 10px;
    top: -50px;
    color: #ffffff;
    text-align: center;
}

#image {
    position: relative;
    top: -100px;
    margin: 0 auto;
    border: 3px solid #9c9c9c;
    width: 200px;
    height: 200px;
    background: url("avatar.jpg");
    background-size: cover;
}

#image > img {
    position: absolute;
    width: 90px;
    height: 90px;
    bottom: -25px;
    right: -47px;
}

#links {
    display: flex;
    margin: 0 auto;
    width: 200px;
    position: relative;
    top: -74px;
    justify-content: space-between;
}

a {
    color: #ffffff;
}

#links > a {
    display: block;
    background-color: #9c9c9c;
    color: #ffffff;
    padding: 5px 10px;
    font-weight: 400;
    width: 68px;
    text-align: center;
    text-decoration: none;
}

#links > a:hover {
    background-color: #dd1b16;

}

#decor {
    position: relative;
    top: -50px;
    background-color: #dd1b16;
    height: 3px;
    width: 200px;
    margin: 0 auto;
}

footer {
    position: absolute;
    bottom: 0;
    height: 30px;
    background-color: #dd1b16;
    border-top: 3px solid #9c9c9c;
    width: 100%;
}