* {
	scroll-behavior: smooth;
}

body {
	background: #02020B;
	font-family: Arial, serif;
}

header {
	background-size: contain;
	background-image: url(../images/bg.webp);
	background-repeat: no-repeat;
	height: 850px;
	width: 100%;
}

header nav {
	z-index: 1;
	box-sizing: border-box;
	position: fixed;
	width: 100%;
	padding: 15px;
	display: flex;
	justify-content: space-between;
}

header nav .logo {
	z-index: 1;
	gap: 10px;
	display: flex;
    text-decoration: none;
}

header nav .logo .wrapper {
	margin: auto 0;
}

header nav .logo .wrapper div {
	font-family: Roboto Slab;
	font-weight: 900;
	font-size: 24px;
	color: #ffffff;
}

header nav .logo .wrapper div:last-child {
	font-size: 27px;
}

header nav .logo img {
	width: 30px;
    height: 54px;
}

header .container {
	padding: 20px;
	box-sizing: border-box;
	align-items: anchor-center;
  text-align: center;
	top: calc(50% - 200px);
	left: calc(50% - 200px);
	position: absolute;
	width: 400px;
	height: 400px;
	display: flex;
	justify-content: space-between;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 50px;
  backdrop-filter: blur(15px);
	flex-direction: column;
}

header .container img {
	-webkit-user-drag: none;
	user-select: none;
	display: block;
	width: 242px;
	height: 242px;
}

header .container div {
	color: #ffffff;
	font-weight: 900;
	font-size: 35px;
	line-height: 39px;
	text-transform: uppercase;
}

/*MEDIA*/
@media (max-width: 400px) {
	header .container {
		width: 100%;
		left: 0;
	}

	header .container img {
		width: 200px;
		height: 200px;
	}

	header .container div {
		font-size: 30px;
    line-height: 35px;
	}
}