body {
  background-color: #333;
}

h1 {
  text-align: center;
  margin-top: 40px;
  color: #ff6d4a;
  font-size: 60px;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

form {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

label {
  display: block;
  margin-bottom: 10px;
  color: blueviolet;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
  font-size: 18px;
  color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

textarea {
  resize: vertical;
  height: 180px;
}

input[type="submit"] {
  background-color: #ff6d4a;
  color: #fff;
  padding: 20px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  margin-top: 40px;
}

input[type="submit"]:hover {
  background-color: #e24d2c;
}

nav {
  animation: topToDown 1.5s ease-in;
}
.dropdown-menu {
  background-color: #212529;
  border: none;
}

.dropdown-menu a {
  color: #212529;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background-color: #e9ecef;
  color: #e9ecef;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
.active {
  text-decoration: underline;
}

.footer-clean {
  padding: 50px 0;
  color: #f8f9fa;
}

.footer-clean h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 16px;
}

.footer-clean ul {
  padding: 0;
  list-style: none;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-clean ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.footer-clean ul a:hover {
  opacity: 1;
  text-decoration: none;
  border-bottom: 2px solid #4e73df;
  transition: all 0.3s ease-in-out;
}

.footer-clean .item.social {
  text-align: right;
}

.footer-clean .item.social > a {
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin-left: 10px;
  margin-top: 22px;
  color: inherit;
  opacity: 0.75;
}

.footer-clean .item.social > a:hover {
  opacity: 0.9;
}

.footer-clean .copyright {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 13px;
  opacity: 0.6;
}

#contact {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.contact-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.contact-method {
  width: 300px;
  margin: 20px;
  padding: 20px;
  background-color: #333;
  border: 2px solid #e24d2c;
  border-radius: 5px;
  text-align: left;
  box-shadow: 0px 0px 20px #111;
  display: inline-block;
  vertical-align: top;
}

.contact-method i {
  font-size: 1.5rem;
  margin-right: 10px;
}

.contact-method p {
  font-size: 1.22;
}

.contact-method p a {
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid #fff;
}

.contact-method p a:hover {
  border-bottom: 1px solid transparent;
}
