@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	font-size: 15px;
}

body {
	margin: 0;
	--color-text: #fff;
	--color-bg: #000;
	--color-link: #aaa;
	--color-link-hover: #333;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	outline: none;
}

body{
  overflow-x:hidden;
  max-width:100vw !important
}
body .dg.ac {
  z-index: 10000;
  
}

.dg.main > ul {
  border: 1px solid #333;
  border-top: 0;
  border-bottom: 0;
}

body .dg.main .close-button {
  background: #333;
}

body .dg.main .close-button:hover {
  background: #333;
}

main{
  display:flex;
  flex-direction:row;
  min-height:100vh;
}

.frame h1, .frame p, .frame img{
  margin:0px;
}  
.frame {
	padding: 3rem 0vw 3rem 3vw;
	text-align: center;
	position: relative;
	z-index: 1000;
  flex:0 0 40%;
  display:flex;
  flex-direction:column;
  gap:30px;
  align-items: flex-start;
  justify-content: center;
  background-image: url("div.png");
  background-size: auto 80%;
  background-position: left bottom;
  background-repeat: no-repeat;
}

.frame .logo img{
  max-width:240px;
  height: auto
}

.frame .title{
  font-family: "Nunito Sans", serif;
  font-weight: bold;
  font-size: 60px;
  padding: 15px 70px 25px 0px;
  background-image: url("text.png");
  background-size: auto 170%;
  background-position: center center;
  background-repeat: no-repeat;
  margin-top:50px
}
.frame .sub_title{
  font-family: "Nunito Sans", serif;
  font-weight: bold;
  font-size: 40px;
  padding: 0;
  margin:0px;
  margin-top:-50px;
}

.frame .text{
  font-family: "Nunito Sans", serif;
  font-weight: 400;
  font-size: 16px;
  max-width:580px;
  text-align:left;
  margin-bottom:50px
}
.frame .links{
  display:flex;
  flex-direction:row;
  gap:30px;
  flex-wrap:wrap;
}

.frame form input{
  border:0px;
  box-shadow:0 0 0 0 #00000000;
  outline:none;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  width:260px;
  padding:10px 50px 10px 20px;
  border-radius:50px;
  font-family: "Nunito Sans", serif;
  font-weight: 400;
  font-size: 14px;
  color:#fff;
}
.frame form button{
  border:0px;
  box-shadow:0 0 0 0 #00000000;
  outline:none;
  background: #fff;
  width:130px;
  padding:10px 0px;
  border-radius:50px;
  font-family: "Nunito Sans", serif;
  font-weight: 400;
  font-size: 14px;
  color:#000;
  text-align:center;
  position:relative;
  margin-left:-40px;
  cursor: pointer;
}

.content {
  flex:0 0 55%;
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: calc(100vh - 13rem);
	position: relative;
	justify-content: flex-start;
	align-items: center;
  height:100vh;
}

@media screen and (max-width: 1800px) {
  .frame{
    flex: 0 0 50%;
  }
  .content{
    flex: 0 0 50%;
  }
}

@media screen and (max-width: 1500px) {
  .frame{
    flex: 0 0 55%;
  }
  .content{
    flex: 0 0 45%;
  }
}

@media screen and (max-width: 1400px) {
  .frame .title{
    font-size:50px;
  }
  .frame{
    flex: 0 0 48%;
  }
  .content{
    flex: 0 0 52%;
  }
}

@media screen and (max-width: 1300px) {
  .frame{
    flex: 0 0 55%;
  }
  .content{
    flex: 0 0 45%;
  }
}

@media screen and (max-width: 1200px) {
  .frame{
    gap:10px;
  }
  .frame .title{
    font-size:32px;
  }
  .frame .text{
    font-size:14px;
  }
  .content canvas{
    /* transform:scale(0.8);
    width:700px !important;
    position:relative;
    left:-100px !important; */
  }
}
@media screen and (max-width: 1000px) {
  .frame, .content{
    flex: 0 0 100%;
  }
  .frame{
    padding-bottom:0px;
  }
  .content{
    height:60vh;
    flex: 0 0 60vh;
  }
  main{
    flex-wrap: wrap;
    flex-direction: column-reverse;
    padding-top:00px;
    justify-content: flex-end;
  }
  .frame .title{
    background: none;
    text-align:left;
    padding-right:0px;
  }
  .frame .sub_title{
    margin-top:-20px;
    font-size: 24px;
  }
  .frame{
    position:initial;
    padding-top:0px;
    margin-top:-100px;
  }
  .frame .logo{
    position:absolute;
    z-index: 99999999;
    left:5vw;
    top:20px;
  }
  .frame .title{
    margin:0px;
    padding-bottom:10px;
  }
  .frame .text{
    margin-bottom:15px;
  }
  .frame .logo img{
    max-width:180px;
  }
}

@media screen and (max-width: 500px) {
  .frame .links{
    gap:10px;
  }
  .frame .links a{
    flex:0 0 calc(50% - 5px);
    width: calc(50% - 5px);
  }
  .frame .links a img{
    width:100%;
    height:auto;
  }
  .content{
    height:55vh;
    flex: 0 0 55vh;
  }
}

/* @media screen and (min-width: 53em) {
	.frame {
		position: fixed;
		text-align: left;
		z-index: 100;
		top: 0;
		left: 0;
		display: grid;
		align-content: space-between;
		width: 100%;
		max-width: none;
		height: 100vh;
		padding: 3rem;
    z-index: 1000;
		pointer-events: none;
		grid-template-columns: 75% 25%;
		grid-template-rows: auto auto auto;
		grid-template-areas: 'title ...'
							'... ...'
							'... links';
	}
	.frame__title {
		margin: 0;
    grid-area: title;
	}
	.frame__links {
		grid-area: links;
		padding: 0;
		justify-self: end;
	}
	.frame a {
		pointer-events: auto;
	}
	.content {
		height: 100vh;
		justify-content: center;
	}
} */