@font-face {
    font-family: Montserrat;
    src: url(./fonts/Montserrat-Regular.ttf);
    font-weight: 400;
}
@font-face {
    font-family: Montserrat;
    src: url(./fonts/Montserrat-Bold.ttf);
    font-weight: 600;
}
@font-face {
    font-family: Montserrat;
    src: url(./fonts/Montserrat-ExtraLight.ttf);
    font-weight: 200;
}

html, body{
    width: 100%; height: 100%;
    background-color: #f7f7f7;
    z-index: 1;
    position: relative;
    overflow: hidden; 
}

body {
    font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;   
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items:center;
}

.age {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 200px;
	margin: auto;
    background: rgb(118,118,255);
    background: linear-gradient(342deg, rgba(118,118,255,1) 0%, rgba(47,247,208,1) 100%);
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	box-shadow: 15px 15px 50px rgba(0,0,0,0.2);
	animation: morphing 20s infinite;
	overflow: hidden;
    transition: all 3s ease;
}

.container:hover {
    animation-play-state: paused;
    transition: 1s;
}

.text {
    display: flex;
    flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
    font-weight: 400;
    font-size: 18px;
}

.hello {
    font-weight: 600;
    font-size: 70px;
    border-bottom: 0px solid white;
    transition: 0.4s;
}
.email {
    margin-top: -5px;
    transition: 0.4s;
}
.name {
    padding: 20px 0 0px 0;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    border-bottom: 1px solid white;
    transition: 0.4s;
    display: none;
}
.title {
    padding: 0px 0 10px 0;
    transition: 0.4s;
    display: none;
}

.hello:hover,
.email:hover,
.name:hover,
.title:hover {
    text-shadow: 0px 0px 20px white;
    transition: 0.4s;
}


@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        box-shadow: 15px 15px 50px rgba(0,0,0,0.2);
    }
    25% { 
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        box-shadow: -10px -5px 50px rgba(0,0,0,0.2);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;		
    }
}


