@import url('https://fonts.googleapis.com/css?family=Raleway:200');

body {
	font-family: 'PT Sans Caption',"Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	font-size: 3vh;
    margin: 0px;
    overflow-x: hidden;
}

/* ============= DEF RADIENT BORDER ============= */

#box {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  /*size*/
  font-family: 'Raleway';
  font-size: 2.5rem;
}
.gradient-border {
  --borderWidth: 4px;
  background: #1D1F20;
  position: relative;
  border-radius: var(--borderWidth);
}
.gradient-border:after {
  content: '';
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(60deg, #09cc54, #23f369, #8ff0a4, #1bac30, #00ff55, #62bb7d, #07b34f, #6fba82);
  border-radius: calc(2 * var(--borderWidth));
  z-index: -1;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
}


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


/* ============= DEF BODY ============= */

#header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#menu-icon {
  font-family: Geneva, sans-serif;
  font-size: 6vh;
}

.Logo {
 width: 7vw;
 height: 7vw;
}


.hero {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100vh;
  width: 101vw;
	padding: 1em;
	box-sizing: border-box;
	color: white;
	background: url(../FondBodyVelo2.jpg) center center no-repeat;
	background-size: cover;
    background-color: gray;
}

.hero-title {
	text-align: center;
  font-weight: bold;
  line-height: 1;
  font-size: 100vh;

}

	@media only screen and (min-width: 32em) { .hero-title { font-size: 15vh; } }

.hero-footer {
	display: flex;
	margin-bottom: 1em;
}


.articletext {
	max-width: 36em;
	margin: 0 auto;
	padding: 1em;
}

.article1 {
	margin: 0 auto;
	padding-top: 1em;
    padding-bottom: 1em;
    width: 101vw;
}

.article2 {
	padding-top: 1em;
	padding-bottom: 1em;
	margin: 0 auto;
    background-color: rgb(24, 24, 24);
    width: 101vw;
    color: rgb(187, 182, 182);
}


/* ============= DEF POPUP MENU ============= */

.dropbtn {
    background-color: #69696900;
    color: white;
    padding: 5px;
    font-size: 3vw;
    border: none;
  }

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #d3ebd4;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown-content a:hover {background-color: #a5b8a6;}

  .dropdown:hover .dropdown-content {display: block;}

  .dropdown:hover .dropbtn {background-color: #3e8e41;}