/* global styling starts here */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}
a {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 2rem;
}

li {
  list-style-type: none;
}
h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 3rem;
}

h3 {
  font-size: 3.5rem;
}
h4 {
  font-size: 4rem;
  text-transform: uppercase;
}

h5 {
  font-size: 2.3rem;
}
/* contact us starts from here  */
footer {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgb(0, 0, 0, 1)),
    url(/images/cake2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

footer h5 a {
  display: block;
  font-size: 3rem;
  color: #f0ebf4;
  position: absolute;
  top: 2rem;
  left: 0rem;
  text-transform: capitalize;
  font-family: cursive;
  text-decoration: underline;
  cursor: pointer;
  padding:0  2rem;
  border-radius: 9px;
  background-color: transparent;
}
footer div h5 {
  text-transform: uppercase;
  font-size: 2rem;
  padding: 3rem;
  color: black;
}
.socials {
  margin-top: 55rem;
  height: 25vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
i {
  color: #f172a1;
  margin-top: 3rem;
}
footer .socials ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .socials ul li {
  padding: 1.5rem;
}
form {
  position: absolute;
  top: 6rem;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50rem;
  width: 100%;
  margin: auto;
}
footer h6 {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  font-size: 4.5rem;
  padding: 1rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

textarea {
  margin: 1rem;
  resize: none;
  border-radius: 6px;
  text-align: center;
}
input {
  padding: 2.5rem;
  margin: 1rem;
  background-color: #f172a1;
  border: none;
  border-radius: 6px;
  height: 3rem;
  width: 40rem;
  text-align: center;
}
label {
  color: #66fcf1;
}
textarea {
  padding: 4rem;
  background-color: #f172a1;
  border: none;
  width: 40rem;
  height: 30vh;
  overflow: hidden;
}
::placeholder {
  color: #f0ebf4;
  font-size: 2.5rem;
  font-family: "Dancing Script", cursive;
}
form button {
  padding: 1rem 3rem;
  border: none;
  width: 15rem;
  border-radius: 7px;
  font-size: 2rem;
  cursor: pointer;
  margin-top: 0.5rem;
  color: #f0ebf4;
  background: #f172a1;
  font-family: "Dancing Script", cursive;
}
form button ::hover {
  font-size: 1rem;
}
h6 {
  color: #66fcf1;
  font-size: 1.5rem;
  padding-top: 6px;
  text-align: center;
  text-transform: lowercase;
  font-family: "Bebas Neue", cursive;
}
i {
  color: #ee35ff;
  /* size: .5rem; */
  /* font-size: 1rem; */
}
.copyright h6 {
  color: #f0ebf4;
  font-size: 1.5rem;
  text-align: center;
  background-color: transparent;
}
@media screen and (max-width: 810px) {
  form {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  form {
    width: 100%;
  }
}
@media screen and (max-width: 421px) {
  form {
    width: 100%;
  }
}
@media screen and (max-width: 421px) {
  input {
    width: 20rem;
  }
  textarea {
    width: 20rem;
  }
}
