@import url('https://fonts.googleapis.com/css2?family=Lato:wght@600&display=swap');

/* Base Element Styling */
body {
  font-family: 'Lato', serif;
	background-color: black !important;
  color: white;
  text-align: center;
}

li {
  list-style: none;
  margin-left: 20px;
  margin-right: 20px;
}

img {
  max-inline-size: 100%;
  block-size: auto;
}

a {
  color: white;
	text-decoration: none;
}

nav {
  display: flex;
  justify-content: center;
  font-size: 16pt;
  padding: 15px;
  padding-bottom: 30px;
}

p {
  font-size: 16pt;
}



/* Ease-of-use Styles */
.content {
  position: relative;
  bottom: 0;
  width: 100%;
}

.center {
  text-align: center;
  margin: auto;
}

/* Underline Animation */
.hover-underline-animation {
  position: relative;
  color: #FFFFFF;
  text-decoration: none;
}

.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: white;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
  transform: scaleX(0);
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
}



/* Header Styling */
.header-placement {
  padding-top: 40px;
  padding-bottom: 10px;
  padding-left: 10%;
  padding-right: 10%;
  display: block;
}

.impaul {
  animation: 0.7s steps(1000);
  overflow: hidden;
  font-family: lato;
  font-size: 18pt;
  color: white;
}

.impaulimage {
  width: 10%;
  padding-bottom: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.header-line {
  background-color: white;
  height: 2.5px;
  width: 15%;
}

/* Content Styling*/

.para-default-settings{
  max-width: 65%;
  text-align: left;
  text-indent: 25pt;
}

.contact-form{
  max-width: 60%;
}


/* Social Menu */
.social {
  padding-top: 40px;
  position: relative;
  justify-content: center;
}

.social-header {
  color: white;
  font-family: 'Lato';
	font-size: 18pt;
}

.social-list {
  padding-top: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  max-inline-size: 70%;
  max-width: 90%;
  margin: 0 auto;
}

.fa-twitter{
  color:#1DA1F2;
}

.social-item {
  height: 72px;
  width: 72px;
}

.fa:hover {
  opacity: 0.6;
  transition: 0.3s;
}

