@import url('hhtps://fonts.googleapis.com/css?family=Montserrat');

body{

	font-family: Montsrerrat, sans-serif;
 	background : #28223f; 
}

.container{

	margin: 100px auto;
	user-select: none;
	background-color: #231e39;
	color: #b3b8cd;
	border-radius: 5px;
	width: 350px;
	text-align: center;
	box-shadow: 0 10px 20px -10px rgba(0,0,0,.75);
}

.cover-photo{

	background: url(cover.jpg);
	height: 160px;
	width: 100%;
	border-radius: 5px 5px 0 0;
}

.profile{

	height: 120px;
	width: 120px;
	border-radius: 50%;
	margin: 93px 0 0 -175px;
	border: 1px solid #1f1a32;
	padding: 7px;
	background: #292343;

}

.profile-name{
	color: #fff;
	font-weight: bold;
	font-size: 25px;
	margin: 27px 0 0 120px;
}

.about{

	margin-top: 35px;
	line-height: 21px;
	font-size: 12px;
}

button{
	margin: 10px 0 40px 0;
}

.msg-btn, .follow-btn{

	background : #03bfbc;
	border-radius : 1px solid #03bfbc;
	padding: 10px 25px;
	color: #231e39;
	border-radius: 3px;
	font-family: Mantserrat, sans-serif;
	cursor: pointer;
}

.follow-btn{

	margin-left: 10px;
	background: transparent;
	color: #02899c;	
}

.follow-btn:hover{

	color: #231e39;
	background : #03bfbc;
	transition: .5s;
}

.container a{
	color: #fff;
	padding-left: 20px;
	font-size: 20px;
	margin-bottom: 20px;
	cursor: pointer;
	transition: .5s;

}

.container a:hover{

	color: #03bfbc
}


.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #231e39;
  color: #02899c;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
