
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "GladoliaDEMO-Regular";
  src: url("font/GladoliaDEMO-Regular.otf") format("opentype");
  font-weight: normal; 
  font-style: normal; 
}

.hd {
  text-align: center;
  font-size: 150%;
  font-weight: 400;
  margin-right: 210px;
  font-weight: bold;
}

.hd2 {
  text-align: center;
  font-size: 150%;
  font-weight: 400;
  margin-right: 195px;
  font-weight: bold;
}





body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
}


.contact-form {
    max-width: 500px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form label {
    font-weight: bold;
    color: #ffffff;
  }
  
  .contact-form .required {
    color: rgb(43, 135, 255);
    margin-left: 0.25rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.75rem;
    border: 2px solid #6d6d6d;
    border-radius: 25px;
    font-size: 1rem;
    width: 100%;
    background-color: rgb(33, 33, 33);
    color: #fff;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: rgb(43, 135, 255);;
    box-shadow: 0 0 8px rgba(207, 93, 0, 0.6);
  }
  
  .contact-form button {
    background-color: rgb(33, 33, 33);
    color: #6d6d6d;
    border: 2px solid #6d6d6d;
    font-size: 1.1rem;
    padding: 0.75rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;

  }
  
  .contact-form button:hover {
    background-color: #bebebe;
    color: #000000;
    transform: scale(1.05);
  }