/* BROWSER RESET */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
/* COLORS and FONTS */
body {
    color: white;
    background: #d49f00;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5rem;
}
h1 {
    font-weight: 600;
    font-size: 1.9rem;
    margin: .75rem auto .75rem;
    line-height: 1.25;
}
h2 {
    font-weight: 600;
    font-size: 1.9rem;
    margin: .75rem auto .75rem;
}
p.normal {
    font-weight: 400;
}
p.italic {
    font-weight: 400;
    font-style: italic;
}
p.semi {
    font-weight: 600;
}
p.bold {
    font-weight: 700;
}
/* LINKS */
a[href^="mailto:"] { 
    color: #fff;
    text-decoration: none;
}
a:link, a:visited {
    color: #fff;
    text-decoration: none;
    padding: 0rem .5rem 0.125rem .5rem;
    display: inline-block;
}
a:hover, a:active {
    background-color:  rgba(0, 0, 0, 0.1);
    border-radius: .25rem;
}
a.portfolio_link:link , a.portfolio_link:visited {
    background-color: #fff;
    color: #d49f00;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    text-align: center;
    text-decoration: none;
    border-radius: .125rem;
    padding: .5rem 1rem;
    display: inline-block;
}
a.portfolio_link:hover, a.portfolio_link:active {
    background-color: #F6E3A8;
}
main {
    background: #d49f00;
}
/* PHONE */
@media only screen and (min-width: 320px) {
.impressum {
    width: 80%;
    margin: 5rem auto;
    text-align: left;
}
.impressum a{
    font-size: 0.625rem
}
}
/* DESKTOP */
@media only screen and (min-width: 768px) {
.impressum {
    width: 50%;
    margin: 5rem auto;
    text-align: left;
}
.impressum a{
    font-size: 0.625rem
}
}
