html
{
  min-height: 100vh;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}

body 
{
  margin: 0;
  padding: 0;
  background-color: white;
  background-image: url("dubai.jpg");
  background-size: cover;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top;
  position: relative;
  text-align: center;
  font-family: 'roboto';
}

@media only screen and (max-width: 768px) {
  body {
  background-size: auto;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  }
}

.navbar 
{
    width: 100%;
    display: flex;
    justify-content: right;
}

.navbar-links ul
{
    padding-right: 2rem;
    display: flex;
    gap: 1rem;
    list-style-type: none;
}

.navbar-links ul li a
{
    color: var(--light-text);
    text-decoration: none;
    color: #766a5e;
    font-weight: bold;
}

.navbar-links ul li a:hover
{
    opacity: 0.7;
}

.fa 
{
    font-size: 50px;
    width: 50px;
    text-align: center;
    text-decoration: none;
}

.fa:hover 
{
    opacity: 0.7;
}

.float{
	position:fixed;
	width:2em;
	height:2em;
    box-sizing: border-box;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:1em;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
    padding-top: 0.45em;
    z-index:100;
}


small 
{
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  font-family: 'roboto';
  text-shadow: #ffd6c8 0px 0px 3px;
  margin: 4em 6em 4em 6em;
  color: #766a5e;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  small {
  margin: 2em;
  }
}

a
{
  color: #766a5e;
  text-decoration: none;
}

h1, p 
{
  margin: 0;
  padding: 0;
}

h1 
{
  font-size: 2rem;
  font-family: 'abril fatface', cursive;
  color: #766a5e;
  margin-top: 5.5rem;
}

textarea, input, button {
  line-height: 1.5rem;
  border: 0;
  outline: none;
  font-family: 'roboto';
  appearance: none;
}
textarea, input 
{
  color: #4e5e72;
  background-color: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='24'><rect fill='rgb(229, 225, 187)' x='0' y='23' width='10' height='1'/></svg>");
}


textarea {
 width: 98%;
 height: 8rem;
 resize: none;
}

input 
{
 width: 50%;
 margin-bottom: 1rem; 
 box-shadow: none;
 background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='24'><rect fill='rgba(240, 132, 114, 0.5)' x='0' y='23' width='10' height='1'/></svg>");
}

button 
{
 padding: 0.5rem 1rem;
 background-color: #766a5e;;
 color: white;
 font-size: 1rem;
 outline: none;
}

button:hover 
{
    opacity: 0.7;
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='24'><rect fill='rgba(78, 94, 114, 0.3)' x='0' y='23' width='10' height='1'/></svg>");
  outline: none;
}
.wrapper {
  width: 35rem;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .wrapper{
  max-width: 100vw;
  }
}

.side 
{
  height: 12rem;
  background-color: #fcfcf8;
  outline: 1px solid transparent;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .side {
  margin: 0;
  max-width: 100vw;
  }
}


