
@import url('https://fonts.googleapis.com/css?family=PT+Sans|PT+Sans+Narrow&display=swap');

body {
	background-image: url(motif.jpg);
	background-repeat: repeat-x repeat-y; 
	font-family: 'PT Sans', sans-serif; 
}


.brand {
  max-width: 920px; 
  margin: 25vh auto; 
  padding: 0 3em 6em 3em; 
  text-align: center; 
  background-color: rgba(255,255,255,0.8); 
  box-shadow: 2px 2px 10px rgba(0,0,0,0.4); 
}


h1 {
	display: none; 
}

.logo {
	position: relative; 
	top: -40px; 
}

.cta {
	text-decoration: none; 
	border-radius: 15px; 
	color:black; 
	background-color: rgba(255,255,255,0.2); 
	font-weight: bold; 
	margin-top: 1.6em; 
	padding: 0.6em 1.8em; 
	border: solid black 2px; 
	font-variant: small-caps; 
	transition-duration: 250ms; 
	transition-property: background-color, color;   
}
.cta:hover {
	color: white; 
	background-color: black; 
	border: solid black 2px; 
}