@import url('https://fonts.googleapis.com/css2?family=Playwrite+RO:wght@100..400&display=swap'); 

body {
    background-color: rgb(110, 62, 129);
    background-position: center;
}

h1 {
    font-family: "Playwrite RO", cursive;
    font-weight: 400;
    color: #fff;
    margin: 0;
    font-size: 350%;
    line-height: 1;
    position: absolute;
    right: 5px;
    bottom: 5px;
    text-align: right;
}

.etusivu .main {
    text-align: center;
    padding: 20px;
}
.container {
    max-width: 900px;
    background-color: rgb(208, 171, 223);
    margin-left: auto;
    margin-right: auto;
}

.header {
    height: 150px;
    background-image: url(header_kuva.jpg);
    position: relative;
    text-align: center;
}

.nav {
    text-align: center;
    background-color: #ffffff;
    color: rgb(22, 22, 22);
    padding: 10px;
    margin-bottom: 20px;

}
.main {
    min-height: 400px;
}


a:link {
    color: rgb(139, 44, 168);
}
a:visited {
    color: rgb(26, 0, 41);
}
a:hover {

}
a:active {
    text-decoration: none;
}

.nav a {
}


img {
    border: 15px solid #fff;
    margin: 7px;
}

img:hover {
    box-shadow: 6px 6px 16px #37293a;
}

.footer {
    text-align: center;
    background-color: rgb(164, 85, 189);
    color: #fff;
    padding: 30px;
    margin-top: 40px;
    clear: both;
}

figure {
    display: inline-block;
    position: relative;
    margin: 0;
}
 figcaption {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    width: 200px;
    position: absolute;
    left: 22px;
    bottom: 26px;
    padding: 6px;
    box-sizing: border-box;
    visibility: hidden;
    pointer-events: none;
 }
 figure:hover figcaption {
    visibility: visible;
 }