* {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

html,
body,
.wrap {
	width: 100%;
	height: 100%;
}

body {
	background-image: url(../img/body_bg.jpeg);
	background-size: cover;
}

.wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}

.content {
	width: 722px;
	min-width: 722px;
	height: 522px;
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(15px);
	border-radius: 3px;
}

.avatar {
	text-align: center;
	margin-top: 50px;
}

.avatar img {
	width: 100px;
	height: 100px;
	border-radius: 1000px;
}

.avatar h2 {
	margin-top: 5px;
	color: #fff;
	letter-spacing: 0.1em;
}

.btns {
	width: 90%;
	margin: 20px auto;
}

.btns p {
	width: 21%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid ghostwhite;
	color: ghostwhite;
	border-radius: 100px;
	font-size: 16px;
	transition: all 0.3s;
	display: inline-block;
	margin: 10px;
}

.btns p:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.bottomBtns p {
	width: 100%;
}

@media screen and (max-width: 450px) {
	.content {
		width: 100%;
		min-width: 100%;
		height: 100%;
	}
	.btns p{
		width: 41%;
	}
	.bottomBtns{
		margin: 0;
		margin: auto;
	}
	.bottomBtns p{
		width: 100%;
		margin: 10px 0;
	}
}
