@import url("./keyframes.css");
@import url("./defaults.css");

/* Body Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}
/* Header Styles */

.header-heading-container {
  text-align: right;
}
.header-heading-container:after {
  content: "";
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  right: -5px;
  width: 10px;
  height: 80%;
  background-color: #ffffff;
  animation: expandFromCenter 2s ease-in-out;
}
h1.header-heading {
  font-size: 200px;
  line-height: 240px;
  animation: fadeInFromLeft 1s ease-in-out;
}
h2.header-heading {
  font-size: 90px;
  line-height: 100px;
  animation: fadeInFromLeft 2s ease-in-out;
}

.header-subtitle {
  font-size: 28px;
  line-height: 28px;
  animation: fadeInFromRight 3s ease-in-out;
}
.header-subtitle:nth-child(2) {
  animation: fadeInFromRight 3.5s ease-in-out;
}
.header-subtitle:nth-child(3) {
  animation: fadeInFromRight 4s ease-in-out;
}

/* Navigation Styles */
nav ul {
  list-style: none;
  padding: 0;
}
.expand-from-center {
  animation: expandFromCenter 2s ease-in-out;
}
ul.slide-in {
  animation: slideInFromBottom 2s ease-in-out;
}
nav li {
  font-size: 28px;
}
.slide-in-left {
  animation: fadeInFromLeft 1.5s ease-in-out;
}
.slide-in-right {
  animation: fadeInFromRight 1.5s ease-in-out;
}
nav a {
  text-decoration: none;
}

/* Articles */
.article-heading {
  font-size: 40px;
}
.article-text {
  font-size: 20px;
  color: #9ba8ab;
}
.article-link {
  font-size: 18px;
  text-decoration: none;
}

/* General Containers */
div.contact-link-container {
  width: calc(100% - 40px);
  position: relative;
  left: 20px;
}
div.contact-link-row {
  font-size: 20px;
}
div.contact-link-row p {
  flex: 1;
}
div.contact-link-row a {
  text-decoration: none;
}

@media screen and (max-width: 1000px) {
  h1.header-heading, h2.header-heading{
    font-size: 55px;
    line-height: 65px;
  }
  h2.header-heading{
    animation: slideInFromBottom 1.2s ease-in-out;
  }
  .header-subtitle-container {
    width: 0;
    overflow: hidden;
  }
  nav li, .header-subtitle {
    font-size: 20px;
  }
  .article-heading {
    font-size: 28px;
  }
  .article-text, div.contact-link-row, .article-link {
    font-size: 16px;
  }
}