    :root {
    --clr-text: hsl(315, 40%, 94%);
    --clr-body: hsl(315, 15%, 80%);
    --clr-surface: hsl(318, 41%, 8%);
    --clr-primary: hsl(348, 40%, 65%);
    --clr-secondary: hsl(19, 40%, 17%);
    --clr-accent1: hsl(1, 90%, 35%);
    --clr-accent2: hsl(54, 100%, 40%);
    --clr-accent2darker: hsl(54, 100%, 22%);
    --clr-accent3: hsl(0, 0%, 4%);
    }


div.logo {
  position: absolute;
  left: 0;
  top: 0;
}


.accentcolor1 {
  color: var(--clr-accent1);
  font-weight: bold;
}
.accentcolor2 {
  color: var(--clr-accent2);
  font-weight: bold;
}
.accentcolor2darker {
  color: var(--clr-accent2darker);
  font-weight: bold;
}
.accentcolor3 {
  color: var(--clr-accent3);
  font-weight: bold;
}



.contact-form {
  margin-top: 30px;
}

.contact-form .input-block {
  background-color: rgba(255, 255, 255, 0.8);
  border: solid 1px #464646;
  width: 100%;
  height: 60px;
  padding: 25px;
  position: relative;
  margin-bottom: 20px;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.contact-form .input-block.focus {
  background-color: #fff;
  border: solid 1px #464646;
}
.contact-form .input-block.textarea {
  height: auto;
}
.contact-form .input-block.textarea .form-control {
  height: auto;
  resize: none;
}
.contact-form .input-block label {
  position: absolute;
  left: 25px;
  top: 25px;
  display: block;
  margin: 0;
  font-weight: 300;
  z-index: 1;
  color: #333;
  font-size: 1.1em;
  line-height: 1.1em;
}
.contact-form .input-block .form-control {
  background-color: transparent;
  padding: 0;
  border: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: auto;
  position: relative;
  z-index: 2;
  font-size: 1.15em;
  color: #333;
}

textarea#message {
    margin-top: 0.7em;
}

.contact-form .input-block .form-control:focus label {
  top: 0;
}
.square-button {
  background-color: rgba(240, 240, 255, 0.8);
  color: #464646;
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 6px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 60px;
  border: 1px solid #464646;
  width: 100%;
}
.contact-form .square-button:hover, .contact-form .square-button:focus {
  background-color: white;
}


@media (min-width: 767px) {
  .contact-wrap {
    width: 60%;
    margin: auto;
  }
}

@media (min-width: 766px) {
  .contact-wrap {
    width: 90%;
    margin: auto;
  }
}
/*----page styles---*/
body {
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #D0CACA), color-stop(100%, #A09E9E));
  background-image: -moz-linear-gradient(left, #D0CACA, #A09E9E);
  background-image: -webkit-linear-gradient(left, #D0CACA, #A09E9E);
  background-image: linear-gradient(to right, #D0CACA, #A09E9E);
  font-family: 'Roboto', sans-serif;
}

.contact-wrap {
  padding: 15px;
}

h1 {
  background-color: white;
  color: #504E4E;
  padding-inline: 40px;
  padding-bottom: 20px;
  padding-top: 16px;
  margin: 0 0 10px;
  font-size: 2em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}
h1 small {
  font-size: 0.75em;
  display: block;
  text-transform: none;
  font-weight: 300;
  margin-top: 10px;
  color: #504E4E;
}



footer {
    color: #504E4E;
    right: 10px;
    bottom: 0px;
}

.made-with-love { 
  margin-top: 50%;
  clear: left;
  text-align: center;
  font-size: 10px;
  font-family: arial;
  color: #fff;
}
.made-with-love i {
  font-style: normal;
  color: #F50057;
  font-size: 14px;
  position: relative;
  top: 2px;
}
.made-with-love  a {
  color: #fff;
  text-decoration: none;
}
.made-with-love  a:hover {
  text-decoration: underline;
}

.bottomspacer {
  min-height: 500px;
}