*,
*::before,
*::after{
    box-sizing: inherit;
}

html{
    font-size: 14px;
    background-color: #eee;
}

h1{
    font-size: 200%;
    margin-bottom: auto;
}

h2{
    font-size: 110%;
    font-weight: normal;
}

h3{
    margin-top: .5rem;
    margin-bottom: .5rem;
}

body{
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #024;
    margin: 0;
}

main{
    max-width: 60rem;
    margin: 1rem auto;
    padding: 0 20px;
}

.header{
    margin: 0 0 2rem auto;
    padding: 4px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    
}
.email{
    display: block;
    width: fit-content;
    padding: 6px;
    background-color: #1c2023;
    border-radius: 6px;
}
.email__text{
    color: #eee;
    text-decoration: none;
}
.email:hover{
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
}

li > strong{
    padding-right: .5rem;
}

img{
    max-width: 100%;
}

.postition{
    list-style-type: square;
}

.footer{
    background-color: rgb(80, 80, 80);
    padding: 30px 0;
    margin-top: 50px;
    border-top: 4px solid black;
    color: #eee;
    font-size: 12px;
}

.footer__content{
    max-width: 100%;
    margin: 0 auto;
    padding: 4px;
    display: flex;
    flex-direction: row;
}
.footer .left{
    flex-grow: 2;
}
.footer.right{
    flex-grow: 1;
}
.footer__item{
    color: inherit;
    text-decoration: none;
    margin-bottom: 5px;
}
.footer__item:hover{
    text-decoration: underline;
}