.profile {
	height: 100vh;
	color: white;
}
.profile_content {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	width: 50%;
	max-width: 600px;
	padding: 15px;
	padding-top: 150px;
}
.profile_info {
	display: flex;
}
.profile_content > h1 {
	font-size: 60px;
	font-weight: 400;
	border-bottom: 1px solid #282c2d;
	margin-bottom: 20px;
}
.profile_info > img {
	height: 100px;
}
.profile_details {
	color: white;
	margin-left: 25px;
	flex: 1;
}
.profile_details > h2 {
	background-color: #1d1d1d;
	padding: 15px;
	font-size: 15px;
	padding-left: 20px;
}
.profile_signout {
	padding: 10px 20px;
	font-size: 1rem;
	margin-top: 5%;
	width: 100%;
	color: white;
	background-color: #e50914;
	border: none;
	cursor: pointer;
}
.profile_plans {
	margin-top: 20px;
}
.profile_plans > h3 {
	padding-bottom: 10px;
}
.profile_plans > p {
}
.profile_plans > p > span {
}
@media (max-width: 768px) {
	.profile_content {
		width: 90%;
	}
	.profile_content > h1 {
		font-size: 34px;
	}
}
