*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
@media only screen and (max-width: 635px) {
    html {
      font-size: 9px;
    }
}
@media only screen and (max-width: 575px) {
    html {
      font-size: 8px;
    }
}
@media only screen and (max-width: 510px) {
    html {
      font-size: 7px;
    }
}
@media only screen and (max-width: 450px) {
    html {
      font-size: 6px;
    }
}
@media only screen and (max-width: 385px) {
    html {
      font-size: 5px;
    }
}
body{
    background-color: #fcecd0ad;
}
.background{
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h1{
    color: #562349;
    text-transform: uppercase;
    font-size: 6rem;
    font-weight: 800;
}

h2{
    color: #562349;
    text-transform: uppercase;
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: 1rem;
}
h1:nth-child(2) span{
    color: #ad6989;
}
h1:nth-child(1) span{
    color: #ffa299;
}
.titletext{
    margin-bottom: 4rem;
}
.image-section{
    position: relative;
    height: 23rem;
    width: 23rem;
    background-repeat: no-repeat;
    background-color: rgba(128, 128, 128, 0.459);
    border-radius: 50%;
    box-shadow: 5px 5px 10px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 5rem;
}
h3{
    color: #562349;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: .1rem;
    margin-bottom: 1rem;
    text-align: center;
}

img{
    width: 23rem;
    height: 23rem;
    border-radius: 50%;
}







.social_link {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}



ul {
	display: flex;
}

ul li {
	position: relative;
	display: block;
	color: #666;
	font-size: 30px;
	height: 60px;
	width: 60px;
	background: #ff97b7;
	line-height: 60px;
	border-radius: 50%;
	margin: 0 15px;
	cursor: pointer;
	transition: .5s;
}
ul li:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	height: inherit;
	width: inherit;
	/* background: #d35400; */
	border-radius: 50%;
	transform: scale(.9);
	z-index: -1;
	transition: .5s;
}
ul li:nth-child(1):before {
	background: #4267b2;
}

ul li:hover:before {
	filter: blur(3px);
	transform: scale(1.2);
	/* box-shadow: 0 0 15px #d35400; */
}

ul li:nth-child(1):hover:before {
	box-shadow: 0 0 15px #4267b2;
}


ul li:nth-child(1):hover {
	color: #456cba;
	box-shadow: 0 0 15px #4267b2;
	text-shadow: 0 0 15px #4267b2;
}