html {
    font-size: 100%;
    font-family: "Times New Roman", serif;
}


body, ul, h1, h2, h3, table {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
 

header {
    color: white;
    background-color: #333;
    margin: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    max-width: 50rem;
    min-width: 10rem;
}

header h1 {
    font-size: 3rem;
    margin: 0.5rem;
}

@media (max-width: 668px) {
    header h1 {
        font-size: 1.7rem;
    }
}

header h2 {
    font-size: 1.5rem;
    margin: 0.5rem;
}

h2.center {
    text-align: center;
}

h3 {
    font-size: 1.2rem;
}


header a:first-child {
    text-decoration: none;
}

header img {
    border: 1px solid black;
    float: right;
    border-radius: 0.5rem;
}

@media (max-width: 800px) {
    header img {
        display: none;
    }
}

nav ul {
    list-style: none;
    display: flex;
    margin-bottom: 0.5rem;
}

nav li {
    margin-right: 0.5rem;
}
nav li:first-child {
    margin-left: 0.5rem;
}

nav ul li a {
    text-decoration: none;
    color: white;
} 

nav a:hover {
    text-decoration: underline;
}

/*tähän sivuston aksenttivärit
 * accent1 on Wild Sand
 * accent2 on Hibiscus*/

.accent1 {
    color: #F7F2F3;
}
.accent2 {
    color: #C13577;
}

main a, p.years a:visited {
    color: #C12377;
}
main a:hover{
    text-decoration: overline;
}

main a:visited {
    color: #6D23C1;
}

main {
    flex: 1;
    max-width: 50rem;
    min-width: 10rem;
    margin-right: 2rem;
    margin-left: 2rem;
}

.profilePic {
    float: left;
    margin-right: 0.5em;
    margin-bottom: 0.5em;
    max-width: 25rem;
    border-radius: 0.5rem;
}

table.contact tr th, table.contact tr td {
    border: 1px dashed grey;
    padding: 0.5em;
}

table.contact tr th {
    text-align: left;
}

table.contact a {
    color: black;
}

footer {
    font-size: 80%;
    color: white;
    background-color: #333;
    margin-top: auto;
    margin: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    max-width: 50rem;
    min-width: 10rem;
}

.celebration {
    font-size: 150%;
    font-style:
}

/*Tästä eteenpäin BLOG muotoiluja*/

.blog-image-wrapper {
    float: left; /* or right if you prefer */
    margin: 0 15px 15px 0;
    width: 50%;
}

.blog-image-wrapper img {
    width: 100%;
    height: auto;
}

.blog-image-caption {
    text-align: center;
    font-style: italic;
    font-size: 0.7em;
    margin-top: 0px;
}


