@import url('https://fonts.googleapis.com/css2?family=Tulpen+One&family=Xanh+Mono&display=swap');

@font-face {
    font-family: "lavender";
    src: url("fonts/Lavender\ Extended.ttf");
  }

  @font-face {
    font-family: "greatMango";
    src: url("fonts/Great\ Mango.ttf");
  }
  

body {
  font-family: 'lavender', sans-serif;
  background: #e3d5d3 !important;
  min-height: 100vh;
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
}

p, li, button, a,input {
  font-size: 30px;
  font-family: 'lavender', sans-serif;
  color: #80695f !important;
}

input{
	background-color:white;
}
* {
  box-sizing: border-box;
}

h1, h2, h5,label {
  font-size: 40px;
  font-family: 'greatMango', sans-serif;
  color: #481e26 !important;
}

.column {
  float: left;
  width: 33.33%;
  padding: 5px;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.banner {
  background-image: url(images/banner.jpg);
  text-align: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: right center;
  height: 500px;
  color: black !important;
  text-shadow: 0 0 10px white; /* Add the text-shadow property */
}


.hw_button {
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  background-image: url(images/longbeach.jpg);
  color: black !important;
}

.hw_button:hover {
  background-color: black;
}

.information {
  height: 516px;
  width: 49%;
  float: right;
}

nav{
background-color: #a87975 !important;
}

/* Custom styles for placeholder text */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-family: 'lavender', sans-serif;
    color: #80695f !important;
  }
  
  ::-moz-placeholder { /* Firefox 19+ */
    font-family: 'lavender', sans-serif;
    color: #80695f !important;
  }
  
  :-ms-input-placeholder { /* IE 10+ */
    font-family: 'lavender', sans-serif;
    color: #80695f !important;
  }
  
  :-moz-placeholder { /* Firefox 18- */
    font-family: 'lavender', sans-serif;
    color: #80695f !important;
  }