h1{
    position: fixed; 
    left:50%;
    top:50%;
    margin-left: -160px !important;
}
#avatar{
    position: relative;
    left:50%;
    top: 280px;
    margin-top: -100px;
    margin-left: -100px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 10px 5px 5px rgb(133, 110, 6);   
}
#mail{
    position: fixed;
    left:50%;
    top:60%;
    margin-left: -65px;
}
#mailJS{
    position: fixed;
    left:50%;
    top:62%;
    margin-left: -65px;
}
h3{
    position: fixed;
    left:50%;
    top:65%;
    margin-left: -100px;
}
ul{
    position: fixed;
    left:50%;
    top:70%;
    margin-left: -100px;
}
#hiddenP{
    display: none;
}
#avatar:hover+p{
    display: inline;
    position: absolute;
    top:35%;
    right:30%;
    background-color: lightcyan;
    border-radius: 10px;
    box-shadow: 10px 5px 5px lightgray;
}


body {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


/*button*/

.wrapper {
    margin: 80px auto;
    text-align: center;
    width: 100%;
    position: relative;
    }
    .button {
    padding: 10px 15px;
    margin:10px 4px;
    margin-top: 15px;
    color: #eee;
    font-family: sans-serif;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    text-decoration: none;
    display:inline-block;
    border:1px solid ;
    top:0%;
    }
    .button::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transform: scaleY(.1);
    transform: scaleY(.1);
    transition: all .4s
    
    }
    .button:hover{
    color:#b414ba;  
    }

    
    .button:hover::before{
    opacity: 1;
    background-color: #f7c2f9;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    transition: -webkit-transform .6s cubic-bezier(.08, .35, .13, 1.02), opacity .4s;
    transition: transform .6s cubic-bezier(.08, .35, .13, 1.02), opacity
    }
