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



body {
    background-color: #ffac04;
	font-family: "Oswald", sans-serif;
}

.navbar-toggler {
	
	background: black;
	color: white;
	
}

.oswald-<uniquifier> {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

h2 { width: 100%; text-align: center; margin-top: 3em; }

.button {
  padding: 10px 15px;
  border: none;
  outline: none;
  background-color: #151515;
  color: #eee;
  border-radius: 7px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease-out;
  margin: auto;
  display: block;
  font-size: 1.1em;
  margin-bottom: 2em;
}

.button:hover {
  transform: translateY(-3px);
}

.button-span {
  color: #aaa;
}

a { text-decoration: none; color: white; }

#globalContainer {
		padding:0;
		margin: 0;
}

img { max-width: 100%; position: relative;}

.navbar-brand { margin: auto; padding-left: 2.4em;  }
.nav-item { margin-left: 2em; }
.navbar-brand img { max-height: 52px; }
.bg-body-tertiary { background-color: rgba(255, 255, 255, 0.1) !important;}

/*	body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
*/
form[name=contact] {
  
  padding: 40px;
  border-radius: 12px;
  
  max-width: 500px;
  width: 100%;
}

form[name=contact] h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #333;
}

form[name=contact] .form-group {
  margin-bottom: 20px;
}

form[name=contact] label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

form[name=contact] input,
form[name=contact] textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}

form[name=contact] input:focus,
form[name=contact] textarea:focus {
  border-color: #007bff;
  outline: none;
}

form[name=contact] textarea {
  min-height: 120px;
  resize: vertical;
}

form[name=contact] button {
  background: #007bff;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

form[name=contact] button:hover {
  background: #0056b3;
}

@media (max-width: 600px) {
  form[name=contact] {
	padding: 20px;
  }
}