/* reset rule */
* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

body {
    position: relative;
}

header {
    width: 98.5vw;
    padding: 10px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 1px 6px -1px rgb(0 0 0 / 10%);
    border-bottom-color: #ddd;
    background-image: linear-gradient(#d2f2fe, white);
}

/* Parallax effect how-to found here: https://www.w3schools.com/howto/howto_css_parallax.asp */
.parallax {
    background-image: url(/images/underover0.jpg);
    min-height: 700px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: contrast(115%);
}

h1 {
    font-family: Calibri;
    font-size: 72px;
    font-weight: lighter;
    text-align: center;
    color: #294a6b;
    text-shadow: 2px 2px #d2f2fe;
    padding-bottom: 10px;
    margin-bottom: 10px;
    /* border-bottom: 2px solid gold; */
}

.myname {
    text-align: center;
    font-family: Calibri;
    font-weight: lighter;
    font-size: 36px;
    color: #455C12;
    text-shadow: 2px 2px #d2f2fe;
    padding-top: 10px;
}

nav {
    text-align: center;
    font-family: Calibri;
    width: 60%;
    /* outline: 2px solid green; */
    border-radius: 20px;
    margin-left: 3%; margin-bottom: 1%;
}

h2 {
    text-align: center;
    font-family: Calibri;
    font-weight: lighter;
    font-size: 36px;
    color: #455C12;
    text-shadow: 2px 2px #d2f2fe;
    padding-bottom: 10px; padding-top: 10px;
    border-bottom: 2px dotted goldenrod;
}

nav h2 {
    margin: 0 auto;
}

nav ul {
    margin: 0 auto;
}

nav li {
    display: inline-block;
    list-style-type: none;
    font-family: Calibri;
    margin: 20px;
    padding: 15px;
    background-color: #d2f2fe;
    border: 1px solid #ffffff; border-radius: 20px;
    box-shadow: 2px 2px 2px #aaa;
}

nav li:hover {
    border: 1px solid #294a6b;
}

nav img {
    margin-right: 10px;
}

nav a:link, a:visited {
    color: #294a6b;
    font-size: 1.2em;
    text-decoration: none;
}

aside {
    border: 2px solid royalblue;
    background-color: #d2f2fe; border-radius: 20px;
    width: 30%;
    position: absolute; top: 63%; right: 3%;
    text-align: center;
}

aside li {
    list-style-type: none;
    font-family: Calibri;
    margin: 10px auto;
    padding: 5px;
    background-color: #ffffff;
    border: 1px solid #ffffff; border-radius: 20px;
    width: 40%;
}

aside li:hover {
    border: 1px solid #294a6b;
}

aside a:link, a:visited {
    color: #294a6b;
    font-size: 1.2em;
    text-decoration: none;
}

footer {
    text-align: center;
    font-size: 0.8em;
    padding-top: 90px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 200px;
    background-image: linear-gradient(white, #BCD9E3);
}

a {
    color: #294a6b;
}

footer a:hover {
    color: #000000;
    text-decoration: underline;
}