/*@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');*/

@font-face {
  font-family: "Manrope";
  src: url('Manrope/Manrope-VariableFont_wght.ttf');
  /*src: url('fonts/fira/eot/FiraSans-Regular.eot') format('embedded-opentype'),
       url('fonts/fira/woff2/FiraSans-Regular.woff2') format('woff2'),
       url('fonts/fira/woff/FiraSans-Regular.woff') format('woff'),
       url('fonts/fira/woff2/FiraSans-Regular.ttf') format('truetype');*/
}

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

:root {
	--moss: #3c402b;
	--moss-shadow: rgba(60, 64, 43, .2);	
}

a {
  text-decoration: none;
}

body {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  background-color: #eeeae3;
  overflow-x: hidden;
  height: 100vh;
}

.container {  
  display: grid; 
  grid-template-columns: 50px 0.5fr 1fr 0.5fr 50px; 
  grid-template-rows: 50px 0.5fr 1fr 0.5fr 50px; 
  gap: 0px 0px; 
  grid-template-areas: 
    "left top top top right"
    "left logo . connect right"
    "left . content . right"
    "left soon . copyright right"
    "left bottom bottom bottom right"; 
  height: 100vh;
}

.right { grid-area: right; }

.left { grid-area: left; }

.top { grid-area: top; }

.bottom { grid-area: bottom; }

.logo, .connect, .copyright, .soon, .content {display: flex; }
.connect, .copyright {
  justify-content: flex-end;
}
.soon, .copyright {
  align-items: flex-end;
}

.logo { grid-area: logo; }
.logo img {
  height: 60px;
}

.connect { grid-area: connect; }
.connect a {
  /*display: inline-block;
  padding: 10px 20px;
  border-radius: 15px;
  font-weight: 500;
  background: #343330;
  color: #fff;
  height: auto;*/
	
	display: flex;
    align-items: center;
	padding: 10px 20px;
    background-color: #fff;
    border-radius: 8px;
    font-family: Manrope,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
    font-weight: 500;
    box-sizing: border-box;
    color: var(--moss);
    border: 1px solid var(--moss);
    box-shadow: 2px 2px 0 0 var(--moss-shadow);
    transform: translate(0);
    transition: all .2s ease;
    cursor: pointer;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    user-select: none;
    margin: 0 24px 24px 0;

}

.connect a img {
	height: 24px;
	margin-right: 0.5rem;
}

.connect a:active{transform:translate(2px,2px);box-shadow:0 0 0 0 var(--moss)}

.copyright { 
  grid-area: copyright;
  font-weight: 500;
  font-size: 1rem;
}

.soon { grid-area: soon; }
.soon h1 {
  font-size: 3rem;
  line-height: 3.5rem;
  font-weight: 500;
  
  inline-size: 22vw;
  overflow-wrap: break-all;
}

.content { 
  align-items: center;
  justify-content: center;
  grid-area: content;
  font-size: 2.5rem;
  line-height: 3rem;
  letter-spacing: 2px;
	text-align: center;
}


/** CONTACT OVERLAY **/
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/*background: rgba(0, 0, 0, 0.5);*/
	background: #eeeae3;
	display: none;
}

.dialog {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 2rem;
	border-radius: 8px;
    box-sizing: border-box;
    color: var(--moss);
    border: 1px solid var(--moss);
    box-shadow: 2px 2px 0 0 var(--moss-shadow);
	display: none;
	z-index: 1000;
}

.dialog[open] {
	display: grid;
}

.dialog::backdrop {
	/*background: rgba(0, 0, 0, 0.5);*/
	background: #eeeae3;
}

.close-btn {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
}

/** CONTACT FORM **/

