@import url('https://fonts.googleapis.com/css?family=Cinzel|Cormorant+Garamond|Junge&display=swap');



body {
    margin : 0px;
    font-family: 'Noto Serif', Georgia, serif;
    font-weight: normal;
    /* transition: color 2s; */
    color: rgb(1, 70, 136);
    background-color: seashell;
}

h1 {
    font-weight: normal;
    font-size: x-large;
    /* font-size: 30 vw; */
    margin: 0px;
}

p {
    font-size: xx-large;
    line-height: 1.4em;
    /* font-size: 4vw; */
    text-align: left;
}

/* SHARED */
/* ------ */

/* TOP - fixed header / watermark */

#header {
    position: fixed;
    width: 50%;
    right: 0;
}

#watermark {
    text-align: right;
    text-transform: lowercase;
    padding: 15px;
}

#watermark a {
    text-decoration: none;
    color : rgb(1, 70, 136);
    font-family: 'Cormorant Garamond', serif;
    font-size: x-large;
}

/* #watermark a:hover {
    background-image: -webkit-linear-gradient(92deg, #ffe43b, #ffe43b);
	-webkit-background-clip: text;
	-webkit-animation: hue 10s infinite linear;
} */

#watermark a.wavy {
    text-decoration: underline;
    text-decoration-style: wavy;
}

/* @-webkit-keyframes hue {
  from {
    -webkit-filter: hue-rotate(0deg);
  }
  to {
    -webkit-filter: hue-rotate(-360deg);
  }
} */

.bottom-right {
    position: fixed;
    right: 0px;
    bottom: 0px;
    margin: 0px;
    padding: 15px;
}

.bottom-right a {
    text-decoration: none;
}


/* MAIN content */

#content {
    padding: 15px;
    width: 80%; /* TODO adjust for diferent screen sizes */
    text-align: justify;
    font-family: 'Cormorant Garamond', serif;
}


/* PAGE SPECIFIC */
/* ------------- */


/* HOME page */


body.home-page #screen {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: gainsboro;
    opacity: 0.1;
    z-index: -1;
}


/* body {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
} */

body.home-page {
    /* transition: background-color 2s ease; */
    /* transition: background 2s ease; */
    background: linear-gradient(0deg, rgb(1, 70, 136) 0%, gainsboro 100%);
    -webkit-animation: SeaChange 15s ease infinite;
    -moz-animation: SeaChange 15s ease infinite;
    animation: SeaChange 15s ease infinite;
    background-size: 100% 150%;
    color: white;
    background-color: seashell;
}

@-webkit-keyframes SeaChange {
    0% {
		background-position: 0% 0%;
	}
	50% {
		background-position: 0% 100%;
	}
	100% {
		background-position: 0% 0%;
	}
}
@-moz-keyframes SeaChange {
    0% {
		background-position: 0% 0%;
	}
	50% {
		background-position: 0% 100%;
	}
	100% {
		background-position: 0% 0%;
	}
}
@keyframes SeaChange {
    0% {
		background-position: 0% 0%;
	}
	50% {
		background-position: 0% 100%;
	}
	100% {
		background-position: 0% 0%;
	}
}




body.home-page #watermark a {
    color : seashell;
    cursor: pointer;
}

h1.navigation_header {
    padding-bottom: 20px;
    /* text-decoration: underline; */
    transition: color 2s;
    font-family: 'Cormorant Garamond', serif;
    font-size: x-large;
    color: seashell;
}

#content li {
    list-style-type: none; /*lower-roman;*/
    font-size: smaller;
    transition: color 2s;
    font-family: 'Cinzel', sans-serif;
    text-align: left;
}

a.navigation {
    /* font */
    color: rgb(1, 70, 136);
    font-size: xx-large; /* x-large; */
    text-decoration: none;
    text-shadow: 1px 1px #9e9e9e96;
    text-transform: lowercase;
    /* other */
    display: block;
    padding-bottom: 15px;
    transition: color 2s;
    width: fit-content;
}

body.home-page a.navigation {
    color : white;
}

body.home-page #content {
    width: 65%;
    padding-bottom: 100px;
}

#more-info {
    font-size: x-large;
    display: none;
    color: seashell;
    width: 100%;
    text-align: right;
    background-color: seashell;
    box-shadow: 0px 5px 5px 10px seashell;
    color: rgb(1, 70, 136);
}

#more-info a {
    color: rgb(1, 70, 136);
}


/* WORK page */

body.work-page #content .main_content {
    display: none;
    overflow:hidden;
}

.description p {
    font-size: larger;
}

.next {
    text-align: right;
}

.previous {
    padding-right: 30px;
}

#prev-next-nav a {
    color: rgb(1, 70, 136);
    padding-top: 10px;
    padding-left: 20px;
}

#prev-next-nav a.inactive {
    color: gainsboro;
    cursor: default;
}

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

    body.work-page div.main_content {
        padding-bottom: 100px;
    }

    body.work-page #footer {
        width: 100%;
        /* height: 200px; */
        position: fixed;
        height: 70px;
        bottom: 0;
        background-color: seashell;
        margin-left: 0;
        box-shadow: 0px -10px 15px 10px seashell;
    }

    body.work-page #content {
        padding-top: 80px;
    }

    body.work-page #header {
        width: 100%;
        background-color: seashell;
        box-shadow: 0px 5px 5px 5px seashell;
    }

    body.home-page ul {
        padding-inline-start: 0px;
    }


}
