/*navigation menue */

nav{
	width: 100%;
	background-color: rgb(0, 0, 0);
	position : relative;
	top: 0;
    z-index: 9000;
}

nav > ul::after{
	content: "";
	display: block;
	clear: both;
}

nav > ul{
	margin: 0px;
	padding: 0px;
}

nav > ul > li{
	float: left;
	position: relative;
}

nav li{
	list-style-type: none;
}

nav > ul > li > a{
	padding: 20px 30px;
	color: rgb(235,230,225);
}

nav > ul > li:hover a{
	padding: 15px 30px 20px 30px;
}

nav a
{
	display: inline-block;
	text-decoration: none;
	color: rgb(255, 255, 255)!important;
}


.menu:hover{
	border-top: 5px solid rgb(0, 191, 255);
	background: rgba(0, 255, 34, 0.815);
}

body
{
	background-image: url(https://i.pinimg.com/originals/65/1e/13/651e13e9e36f3b9b3f899b7ec509d9db.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

h2
{
	color: white;
    font-family:"Fira Sans", sans-serif;
    border: solid 5px;
    text-align: center;
    font-size: 50px;
    border-image: linear-gradient(355deg, 
     #59c173, #a17fe0, #5d26c1);
    border-image-slice: 1;
    animation: anime1 1s;
	margin-right: 20%;
	margin-left:  20%;
}

.btn
{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
}

.icone
{
    width: 50px;
    cursor: pointer;
}

@keyframes anime1 {
	0% {
			  transform: scale(0.5);
			  transform: scale(0.5);
	}
	100% {
			  transform: scale(1);
			  transform: scale(1);
	}
  }



