@import url("fa-all.min.css");


:root {
  --bg-color: #111;
  --txt-color: #fff;
  --txt-alt-color: #c5c5c5;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

body.pagehome {
	background-color: var(--bg-color);
	background-image: url(../images/bg.jpg);
	background-size: cover;
	background-position: top center;
	color: var(--txt-color);

	min-height: 100vh;
}

img {
	width: 100%;
	height: auto;
}

a, a:visited {
	color: var(--txt-color);
	position: relative;
}

a:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    display: block;
    height: 1px;
    width: 0px;
    background: var(--txt-alt-color);
    transition: all 0.25s ease-in-out;
}
a:hover, a:focus {
	text-decoration: none;
	color: var(--txt-alt-color);
}
a:hover:after,
a:focus:after {
	width: 60%;
    max-width: 40px
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.logo {
	width: 60%;
	max-width: 450px;
}
.contact {
	padding: 0.5em;
	font-size: 2em
}


footer {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 90
}


.animate__fadeIn {
  animation: fadeIn .75s;
  -webkit-animation: fadeIn .75s;
  -moz-animation: fadeIn .75s;
  -o-animation: fadeIn .75s;
  -ms-animation: fadeIn .75s;
}
@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-ms-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}