:root {
    user-select: none;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
}

html, body, div, span, applet, object, iframe,
h1, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

#navleft {
    display: flex;
    width: 20rem;
    height: 3rem;
    justify-content: space-between;
}

#icon {
    width: 11rem;
    height: 3rem;
}

#frontpagelink {
    width: 7rem;
    height: 3rem;
    background-color: #ffd1dc;
    display: inline-block;
}

#frontpagelink :hover {
    background-color: #ff3968;
    transition: background-color 0.8s;
}

h2 {
    margin: 0;
    padding: 0;
    border: 0;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

header {
    background-color: #ffd1dc;
    width: 100vw;
    height: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: #ff85a2 solid;
    border-width: 0.2rem;
}

nav {
    width: 21rem;
    height: 3rem;
    list-style: none;
    display: flex;
    align-items: center;
}

nav :hover {
    background-color: #ff3968;
    transition: background-color 0.8s;
}

li {
    width: 7rem;
    height: 100%;
}

.navlinks {
    height: 100%;
    text-decoration: none;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

footer {
    width: 100%;
    height: 2rem;
    background-color: #272727;
    color: #ffd1dc;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#me {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;
    justify-content: space-evenly;
    align-items: center;
}

img {
    width: 10rem;
    height: 10rem;
}

#contact {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;
    justify-content: center;
    align-items: center;
}