@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Syncopate:wght@400;700&display=swap');
			* {box-sizing: border-box;}

            body {
                background:url(bg.png);
                font-family: "Fira Sans", sans-serif;
				font-size: 18px;
            }
			p {
				line-height: 160%;
			}
			::selection {
  color: white;
  background: black;
}
h1 {
	  font-family: "Syncopate", sans-serif;
	  margin-top: 0;
	font-size: 2.5rem;
	margin-bottom: 20px;
	letter-spacing: 0.3em;
	text-align: center;
}
/* container */
.container {
    display:block;
	max-width:1024px;
  padding: 20px;
  margin: auto;
  transition: 0.5s all ease;
}

/* columns */
.container > * {
    padding:1rem;
}
.container > div:nth-child(2) {
    display: none;
}

@media (min-width: 768px) {
    .container {
        display: grid;
        grid-template-columns: 3fr 1fr;
    }

    .container > div:nth-child(2) {
        display: block;
    }
}
            .address {
                background: #000;
                color: #fff;
                padding: 2px 4px;
				border: 1px solid black;
            }
			.address:hover {
				background: transparent;
				color: black;
				border: 1px solid black;
				transition: background 0.25s ease;  
			}


input[type=text], textarea {
  width: 100%;
  padding: 8px;
  border:0;
border-bottom: 5px solid #fff;
	border-left: 5px solid #fff;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
font-family: inherit;
font-size: inherit;
letter-spacing: 1px;
padding-top: 13px;
}
textarea {
	height: 200px;
}
input[type=text]:focus, textarea:focus {
	outline:0;
	border-bottom: 5px solid #000;
	border-left: 5px solid #000;
	transition: border-color 0.25s ease;  
}

input[type=submit] {
	font-family: inherit;
  background-color: #000;
  font-size: 18px;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
transition: transform 0.3s ease;
}

input[type=submit]:hover {
  background-color: #525252;
  transform: scale(1.1);
  
}


		p.error, p.success {
			font-weight: bold;
			padding: 10px;
			border: 1px solid;
		}

		p.error {
			background: #ffc0c0;
			color: #900;
		}

		p.success {
			background: #b3ff69;
			color: #4fa000;
		}
	footer {
		margin:50px 0px 20px 0px;
	}
	footer p {
		font-size: 14px;
		font-style: italic;
	}
	a {
  color: #000;
}
a:hover {
	text-decoration: none;
}
.text {
  display: inline-block;
    vertical-align: middle;
  line-height: 1.5em;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
  background: linear-gradient(to bottom, #000 50%, transparent 50%) 0 100%;
  background-size: 100% 200%;
  transition: text-shadow 0.3s, background-position 0.3s;
}

.text:hover {
  /* Shift the two shadow positions by 1.5em */
  text-shadow: 0 0 0 #fff, 0 1.5em 0 #000;
  /* Move the background position */
  background-position: 0 0;
}
@keyframes fadeInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.fadeInUp-animation {
  animation: 1.5s fadeIn ease-in;
}

span.blockspam {
  display: none;
}