/* CSS-TIEDOSTOPOHJA LINKKI-OPPIMATERIAALIN ETUSIVUA VARTEN (KOKO MATERIAALIN ETUSIVU) */

/* =============================
   YLEISET MUUTTUJAT
   ============================= */

:root {
    --nav-korkeus: 2em; /* Vakioitu korkeus kaikille navigaatiopalkkeille */
    --font-size: 1rem; /* Perusfonttikoko */
    --padding: 1.25em; /* Yleinen sisennys */
}

/* =============================
   YLEISET TYYLIT
   ============================= */

body {
    font-family: Lato, Arial, sans-serif; 
    font-size: var(--font-size);
    margin: 0;
    padding: 0;
    padding-bottom: 2.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
	background-color: white;
}

/* =============================
   NAVIGAATIOASETTELU
   ============================= */

nav {
    width: 100%;
    padding-top: 0.75em;
    text-align: center;
    z-index: 1;
}

/* =============================
   NAVIGAATIOPALKEILLE YHTEISET TYYLIT
   ============================= */

.murupolku-nav {
    background-color: #002957; 
    position: sticky;
    top: 0;
    height: var(--nav-korkeus);
    color: #e6dccd;
}

.murupolku-nav a {
	font-size: 85%;
	font-weight: lighter;
    color: white;
}

/* =============================
   YLEISET NAVIGOINTILISTAT
   ============================= */

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 1em;
}

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

/* Tekijät */
nav span { 
    font-size: 75%;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    letter-spacing: 1.5px;
    position: absolute;
    right: 0;
}

/* =============================
   PÄÄSISÄLTÖALUE
   ============================= */

.etusivu {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 2.5em;
    margin-bottom: 3em;
    display: block;
    text-align: center;
}

.etusivu p {
    font-size: 110%;
}

.center {
    width: 80%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto; 
    font-size: 100%;
    text-align: left;
}

/* =============================
   OTSIKOT
   ============================= */

h1 {
    font-family: Lato, Arial, sans-serif;
    text-align: center;
    letter-spacing: 0.15em;
    padding-bottom: 0.5em;
}

h2 {
    text-align: center;
}

h1.fancy {
    text-align: center;
    position: relative;
    z-index: 0;
}
  
h1.fancy:after, h1.fancy:before {
    border-top: 3px solid #E85533;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    content:"";
    margin: 0 auto; /* this centers the line to the full width specified */
    position: absolute; /* positioning must be absolute here, and relative positioning must be applied to the parent */
    top: 50%; left: 0; right: 0; bottom: 0;
    z-index: -1;
}
  
h1 > span {
    /* to hide the lines from behind the text, you have to set the background color the same as the container */
    background:white;
    padding: 0 0.75em
}

/* =============================
   LINKIT
   ============================= */

.center, .etusivu a:link {
    color: #002147;
	text-decoration: none;
}

/* visited link */
.center, .etusivu a:visited {
    color: #002147;
}

/* mouse over link */
.center, .etusivu a:hover {
    color: #E85533;
}

/* =============================
   KUVAT JA TEKSTIT (TAULUKOSSA)
   ============================= */

img {
	max-width: 100%;
	height: auto;
}

nav span img {
    width: 5em;
    padding-right: 1em;
    padding-left: 0.75em;
}

.pienempi img {
    max-width: 65%;
	height: auto;
}

td {
	width: 30%;
}

td.kuva {
    text-align: center;
	margin-left: auto;
	margin-right: auto;
	padding-top: 1em;
}

td.kuvateksti {
	color: black;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	font-size: 110%;
	padding-bottom: 1em;
	letter-spacing: -0.5px;
}

/* JYU-logo sivujen lopussa 
    (materiaalin etusivu + Tekijät-sivu) */
.jyulogo {
    width: 30%;
}

/* =============================
   MASKOTTIKOKEILU***
   ============================= */

.maskotti {
    position: absolute;
    max-width: 200px;
    width: 100%;  
    height: auto;
    transform: rotate(-10deg);  
    z-index: 1;       
    left: 3em;
    top: 2.5em;
}


/* ==========================================================
                     MOBIILI / PIENI NÄKYMÄ
   ========================================================== */


@media screen and (max-width: 600px) { 


    /* =============================
       YLEISET TYYLIMUUTOKSET <600px
       ============================= */

    body {
        font-size: 80%;
    }

    .etusivu {
        width: 80%;
    }
	
    /* =============================
       PÄÄSISÄLTÖALUEMUUTOKSET <600px
       ============================= */

    .etusivu p {
        font-size: 100%;
    }

    /* =============================
       NAVIGAATIOASETTELU MUUTOKSET
       <600px
       ============================= */

    nav {
        width: 100%;
        text-align: center;
        z-index: 1;
    }

    nav span {
        letter-spacing: normal;
    }

    /* Tekijät */
    span img { 
       width: 10%;
       height: auto;
    }

    /* =============================
       KUVAT JA TEKSTIT (TAULUKOSSA)
       MUUTOKSET <600px
       ============================= */
    
    nav span img {
        padding-right: 0.5em;
        padding-left: 0.5em;
    }

    td img {
        width: 90%;
    }

	td.kuva {
		padding-top: 0.5em;
	}

	td.kuvateksti {
		font-size: 100%;
		padding-bottom: 0.5em;
	}
	
	table.center {
		width: 90%;
	}

    /* JYU-logo sivujen lopussa 
    (materiaalin etusivu + Tekijät-sivu) */
    .jyulogo {
        width: 20%;
    }

    /* =============================
       LINKIT MUUTOKSET <600px
       ============================= */
	
	.center p a:link {
		font-size: 100%;
		display: inline-block;
		width: 10em;
		padding: 0.6em 0em;
	}

    /* =============================
       MASKOTTIKOKEILU***
       ============================= */

   .maskotti {
        max-width: 125px;   
        left: 1.5em;
        top: 1.5em;
    }


}

