* {
    box-sizing: border-box;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.wrap {
    margin-left: auto;
    margin-right: auto;
    padding: 1px;
    border: 1px silver solid;
    width: 600px;
    height: 100vh;
}

.container {
    text-align: center;
}

.header {
    width: auto;
    height: 200px;
    background-color: black;
    background-image: url('../images/background-img.jpeg');
    background-size: contain;
}

.header .avatar-img {
    position: relative;
    top: 108px;
    width: 185px;
    border-radius: 50%;
    border: aliceblue 2px solid;
}

.header .header-title {
    position: relative;
    top: 111px;
    font-size: 2rem;
}

.header .header-caption{
    position: relative;
    top: 115px;
    font-weight: 600;
}

.section {
    position: relative;
    padding: 5px;
}

.section-title {
    font-size: 1.3rem;
}

.welcome-section {
    top: 170px;
}

.blockquote-front-page {
    top: 190px;
    margin-left: 3rem;
    padding: 1rem;
    border-left: .7rem solid darkblue;
    text-align: left;
}

.blockquote-front-page .quote-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blockquote-front-page .quote-phrase {
    font-size: 1.5rem;
    font-style: italic;
}

.blockquote-front-page::before {
    content: '"';
    font-size: 10rem;
    position: absolute;
    top: -13px;
    left: -17px;
    font-style: italic;
    font-family: 'Courier New', Courier, monospace;
    color: gainsboro;
    z-index: -99;
}