@font-face { 
    font-family: MorningBreeze; src: url('./fonts/morning_breeze/MorningBreeze.otf'); 
    font-family: Franklin; src: url('./fonts/franklin-gothic-cufonfonts/Franklin\ Gothic\ Condensed.ttf'); 
} 
html, body {
    margin: 0;
    height: 100%;
    overflow: hidden;
}

*{
    margin: 0;
    padding: 0;
}

body{
    display: flex;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(-45deg, #030345,rgb(55, 1, 1));
	background-size: 400% 400%;
	animation: gradient2 15s ease infinite;
}

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

.LeftBanner{
    height: 100vh;
    max-width: 14rem;
    width: 100%;
    background-color: rgba(27, 27, 27, 0.413);
    box-shadow: 0 0 15px #111111, 0 0 2px #000000;
}

.Content{
    height: 100vh;
    width: 100%;
    overflow-y: auto;
}

.MySelf{
    background-color: rgba(0, 0, 0, 0.333);
    padding-top: 1px;
    box-shadow: 0 0 15px #000000c5, 0 0 2px #000000;
}

.Avatar{
    display: none;
    height: 50%;
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    border-radius: 100%;
    box-shadow: 0 0 15px #696969, 0 0 2px #6e6e6e;
}

.Name{
    text-align: center;
    color: rgb(206, 206, 206);
    font-size: 120%;
    font-family: MorningBreeze;
    margin-top: 20px;
    margin-right: 10px;
    margin-left: 10px;
    
}

.PageBanner{
    margin-top: 50px;
    margin-right:20px;
    margin-left:20px;
}

.Page{
    display: block;
    text-align: center;
    color: rgba(227, 227, 227, 0.715);
    font-size: 25px;
    font-family: MorningBreeze;
    text-decoration: none;
    padding-bottom: 1vh;
    padding-top:1vh;
    margin-top: 25px;
    background-color:rgba(37, 37, 37, 0.715);
    border-radius:10px;
    box-shadow: 0 0 10px #141414, 0 0 2px #242424; 
}

.Page:hover{
    background: linear-gradient(-45deg, #cccccc,rgba(37, 37, 37, 0.715));
    /* background: linear-gradient(-45deg, #030345,rgb(55, 1, 1)); */
	/* background-color: rgba(0, 0, 0, 0.659); */
    background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100%;
    color: black;
}
@keyframes gradient {
	0% {
		background-position: 0% 0%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}



.Socials{
    display: flex;
    justify-content: center;
    margin-top: 1vh;
    padding-bottom: 40px;
}

.icon{
    margin: 5px;
    height: 15px;
    width: 15px;
    fill: rgb(173, 173, 173);
}

.icon:hover{
    fill: rgb(239, 239, 239);
}