@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400&display=swap');

* {
	margin: 0px;
	padding: 0px; 
	font-family: 'Montserrat', sans-serif;
}


html, body {
	margin: 0px; 
	padding: 0px;
	min-height: 100%; 
	/*overflow: hidden; */
	background-color: #0E9543;
}

#card {
	/*position: fixed;*/
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	margin: 5%;
	padding: 10px;
	background-color: white;
	border-radius: 50px;
	background-image: url("../img/glyphe.svg");
	background-repeat: no-repeat;
	background-position: top 40px right 10%;
	font-size: 150%;
	box-shadow: -10px -10px 15px black;	
	border-width: 5px;
	border-color: black;
	border-style: solid;
}

#header {
	margin: 0px;
	padding-top: 2%;
	padding-left: 10%;
	padding-right: 10%;
	font-size: 150%;
	text-align: center;
	text-shadow:2px 2px 0px #aaa;
}

#content {
	padding-top: 5%;
	padding-left: 10%;
	padding-right: 10%;
	text-align: justify;
	font-style: italic;
}

#contact {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
	align-items: center;
    justify-content: flex-start;
	padding-bottom: 8%;
	padding-left: 10%;
	padding-right: 10%;
	padding-top: 5%;
	text-align: justify;
	/*position: absolute;*/
	bottom: 0;
}

.pic {
	max-width: 25%;
	max-height: auto;
	flex-basis: 25%;
    max-width: 25%;
    width: 25%;

}

.text {
	max-width: 50%;
	flex-basis: 50%;
	max-width: 50%;
	max-height: auto;
	text-align: center;
}

.text a:link, .text a:visited, .text a:active {
	color: black;
}

.text a:hover {
	color: #0E9543;
}

#footer {
	/*position: absolute;*/
	bottom: 0;
	text-align: left;
	vertical-align: top;
	padding-bottom: 35px;
	margin-top: -50px;
	margin-left: 5%;
	color: white;
}

#footer a:link, #footer a:visited, #footer a:active {color: white}
#footer a:hover {color: #aaa}

.cookie-overlay {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  background: #fff;
  z-index: 2051;
  line-height: 20px;
  font-size: 14px;
  border-radius: 6px;

  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

  > div:first-child {
    width: 458px;
  }

  a {
    text-decoration: underline;
  }

  .close-cookies {
    cursor: pointer;
  }

  @include media-breakpoint-down(md) {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;

    > div:first-child {
      width: auto;
    }
  }
}