@charset "UTF-8";

/* Body */
ul {
    list-style-type: none;
    color: #000000;
}
/* Change the link color on hover */
li :hover { color: #5BC3EB;
}
/* Change the link color on hover */
.Bodytext {
	font-size: 24px;
	text-decoration: underline;
}

/* List Items */
li {
  
  font-family: bicycle;
  color: #000000;
  float: right;
  display: inline-block;
  text-decoration: none;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 25px;
  letter-spacing: 14px;
	
}

a {
	color: black;
	text-decoration: none;
	font-size: 25px;
	
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-family: 'bicycle'
}

body{
  background: url('bg.jpg') no-repeat top center;
  background-size: cover;
  height: 100vh;
}

.wrapper{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 550px;
  background: rgba(0,0,0,0.8);
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.wrapper .title h1{
  color: #c5ecfd;
  text-align: center;
  margin-bottom: 25px;
}

.contact-form{
  display: flex;
}

.input-fields{
  display: flex;
  flex-direction: column;
  margin-right: 4%;
}

.input-fields,
.msg{
  width: 48%;
}

.input-fields .input,
.msg textarea{
  margin: 10px 0;
  background: transparent;
  border: 0px;
  border-bottom: 2px solid #c5ecfd;
  padding: 10px;
  color: #c5ecfd;
  width: 100%;
}

.msg textarea{
  height: 212px;
}


.btn {
    background: #33E39B;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    text-transform: uppercase;
}

@media screen and (max-width: 600px){
  .contact-form{
    flex-direction: column;
  }
  .msg textarea{
    height: 80px;
  }
  .input-fields,
  .msg{
    width: 100%;
  }
}
/* Background */
body {background-image:url("images/Project02_Web_A1 copy.jpg")}

/* Solid border */
hr.solid {
  border-top: 1px solid #000000;
}

/*footer*/
footer {
  margin-top: 35%;
  font-size: 12px;
  margin-left: 35%;
  margin-right: 0%;
  font-family: bicycle;
  color: #000000;
  text-align: center;
  background: none;
  border: none;
	position: fixed;
	padding-top: 50px;
	padding-bottom: 4%;
	
}