#logo {
  position: fixed;
  width: 200px;
  top: 4%; 
  left: 5%; 
}




body {
  margin: 0;
  padding: 0;
  background-color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
}

input, button, textarea {
font-family: "Quicksand", sans-serif;
  border: 2px solid rgba(255, 0, 144);
  background-image: none;
  background-color: #eaebeb;
  box-shadow: none;
  padding: 5px;
}
input:focus, button:focus, textarea:focus {
	font-family: "Quicksand", sans-serif;
  outline: none;
}

textarea {
	font-family: "Quicksand", sans-serif;
  min-height: 50px;
  resize: vertical;
}

button {
	font-family: "Quicksand", sans-serif;
  cursor: pointer;
  font-weight: 500;
}

.feedback-card {
	font-family: "Quicksand", sans-serif;
  border: 1px solid black;
  max-width: 980px;
  background-color: #fff;
  margin: 0 auto;
  box-shadow: -0.6rem 0.6rem 0 rgba(17, 174, 206, 0.26);
}
.feedback-header {
	font-family: "Quicksand", sans-serif;
  text-align: center;
  padding: 8px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid black;
}
.feedback-body {
	font-family: "Quicksand", sans-serif;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.feedback-body__message {
  margin-top: 10px;
  font-family: "Quicksand", sans-serif;
}
.feedback-body button {
  margin-top: 10px;
  align-self: flex-end;
  font-family: "Quicksand", sans-serif;
}


.social-media-list {
  position: relative;
  font-size: 22px;
  text-align: center;
  width: 100%;
  margin: 20 auto;
  padding: 0;
}

.social-media-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  margin: 0 5px;
  background-color: #cfde28;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}

.social-media-list li a {
  color: black;
}

.social-media-list li:hover {
  background-color: #ff0090;
}

/* Font Awesome icons */
.social-media-list li i {
  font-size: 20px;
}


/* Animation on hover */
.social-media-list li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  line-height: 60px;
  border-radius: 50%;
  opacity: 0;
  transition: all .2s ease-in-out;
}
.social-media-list li:hover:after {
  opacity: 1;
  transform: scale(1.12);
  transition-timing-function: cubic-bezier(0.37, 0.74, 0.15, 1.65);
}

.social-media-list li:hover a {
  color: whitesmoke;
}

hr {
  border-color: rgba(255,255,255,.6);
}

footer {

clear: both;
	position: relative;
	left: auto;
	right: auto;
	font-family: 'Quicksand', sans-serif;
	font-weight: 400;
	font-size: 12px;
	color: black;
	margin-top: 5%;
	margin-bottom: 3%;

}

@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
	footer {

	position: relative;
	left: auto;
	right: auto;
	font-family: 'Quicksand', sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: black;
	margin-bottom: 3%;

}
}
