body {
  margin: 0;
  padding: 0;
}

.container {
	margin: 0;
	width: 100%;
	min-height: 100vh;
	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
  align-items: center;
  justify-content: center;
	scroll-behavior: smooth;
	background-color: #ffffff;
  color: #000000;
	font-weight: normal;
	font-size: 16px;
	font-family: 'Roboto', 'Avenir', 'Helvetica', 'Arial', sans-serif;
	font-style: normal;
	line-height: 1.5;
	color-scheme: light dark;
	font-synthesis: none;
	text-rendering: optimizelegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-size-adjust: 100%;
}

.background {
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('./images/main.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
  z-index: 1;
}

.overlay {
  width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0 0 0 / 35%);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
  z-index: 2;
}

.main {
  margin: 0;
	width: 880px;
	display: flex;
	flex-direction: column;
  align-items: center;
  justify-content: center;
	padding: 40px;
	box-sizing: border-box;
	background-color: rgba(255 255 255 / 85%);
	border-radius: 22px;
	z-index: 10;
}

.title {
  margin: 0;
	font-size: 32px;
	font-style: normal;
	font-weight: bold;
	line-height: 1.15;
	text-align: center;
	z-index: 2;
}

.link__container {
  margin: 32px 0 0 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.link__btn {
  margin: 0px;
  width: 100%;
  position: relative;
  padding: 10px 16px;
	border: none;
	box-sizing: border-box;
  border: none;
  border-radius: 16px;
	background-color: #4D61C7;
	color: #ffffff;
	outline: none;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
	text-align: center;
  text-decoration: none;
  transition: all .3s ease-in-out;
}
.link__btn:hover {
  cursor: pointer;
  opacity: .7;
}
