/*
 Theme Name:   TandemBlog
 Theme URI:    https://tandem.blog
 Description:  GeneratePress child theme
 Author:       Tàndem
 Author URI:   https://tandem.blog
 Template:     generatepress
 Version:      0.1
*/


body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	width: 100vw;
	height: 100vh;
	color: #1a4235;
	font-size: 18px;
	overflow-x: hidden;
	background: linear-gradient(-45deg, #a98b84, #d2ad76, #b5bc7e, #d47e57);
	background-size: 400% 400%;
	animation: gradient 35s ease infinite;
	background-attachment: fixed;
}

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

/* header */
.inside-header.grid-container {
	border-bottom: solid 0.5px var(--contrast);
}

/* contingut */

#page {
	min-height: 80vh;
}

/* footer */

.inside-site-info.grid-container {
	border-top: solid 0.5px var(--contrast);
}

.site-info a {
	color: var(--contrast);
	text-decoration: none;
}