html,
body {
  overflow-x: hidden;
  overflow-y: hidden;
}

h1 {
  font-size: 3rem;
}

h3 {
  font-size: 2rem;
}

a {
  text-decoration: none;
}

#backgroundImage {
  background-image: url("../resources/wallpaper.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-blend-mode: overlay;
  min-width: 100vw;
  min-height: 100vh;
}

#anush-picture {
  width: 26rem;
  animation: 1s ease-out 0s 1 slideInFromLeft;
}

#introduction {
  font-family: "Times New Roman", Times, serif;
  font-weight: 900;
  color: black;
  animation: 1s ease-out 0s 1 slideInFromRight;
}

#about {
  font-family: "Times New Roman", Times, serif;
  color: black;
  animation: 1s ease-out 0s 1 slideInFromRight;
  display: none;
}

#projects {
  animation: 1s ease-out 0s 1 slideInFromRight;
  display: none;
}

#skills {
  animation: 1s ease-out 0s 1 slideInFromRight;
  display: none;
}

#skills-picture {
  width: 30rem;
}

#footer {
  font-family: Roboto, sans-serif;
  color: #000000;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  animation: 1s ease-out 0s 1 slideInFromBottom;
}

.navbar {
  animation: 1s ease-out 0s 1 slideInFromTop;
}

.navbar-brand {
  font-family: Sacramento, cursive;
  font-size: 3rem;
}

.navbar-nav {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  border-style: solid;
  border-left: 1rem;
  border-right: 1rem;
  border-color: #000000;
}

.nav-link {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000000;
}
.nav-link:hover {
  color: white;
  text-decoration: underline;
  cursor: pointer;
  text-underline-offset: 5px;
}
.nav-link:focus {
  color: red;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.social-media-nav-bar {
  margin-top: 2rem;
  margin-bottom: 2.75rem;
  text-align: center;
  padding-left: 0;
}
.social-media-nav {
  display: inline;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.social-media-btns {
  width: 2.5rem;
}

.contact-me,
.my-resume {
  font-family: "Playfair Display", serif;
  background: #2c0115;
  color: #ffffff;
  border-width: 0.25rem;
  border-style: solid;
  border-color: #000000;
  border-radius: 2.5rem;
  padding-left: 1.7rem;
  padding-right: 1.7rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  font-size: 1rem;
  outline: none;
  display: inline;
}
.contact-me:hover,
.my-resume:hover {
  background: transparent;
  color: #000000;
  cursor: pointer;
  outline: none;
}
.contact-me:focus,
.my-resume:focus {
  outline: none;
}

.about-heading {
  font-weight: 900;
}

.about-content {
  font-size: 1rem;
  font-weight: 500;
}

.carousel-control-prev {
  left: -75px;
}
.carousel-control-next {
  right: -75px;
}

@media (max-width: 1200px) {
  html,
  body {
    overflow-y: auto;
  }
}

@media (max-width: 992px) {
  #anush-picture {
    width: 20rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  #introduction {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  #skills {
    text-align: center;
  }
  #skills-picture {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 20rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  #footer {
    font-size: 0.85rem;
    padding-bottom: 1rem;
  }

  .navbar-brand {
    font-size: 2.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .nav-link {
    font-size: 1.25rem;
  }

  .navbar-toggler {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .social-media-nav-bar {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    text-align: center;
  }
  .social-media-nav {
    display: inline;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .social-media-btns {
    width: 1.75rem;
  }

  .contact-me,
  .my-resume {
    border-width: 0.25rem;
    border-style: solid;
    border-color: #000000;
    border-radius: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.75rem;
  }
  .contact-me {
    margin-right: 0.5rem;
  }

  .carousel-control-prev {
    left: -15px;
  }
  .carousel-control-next {
    right: -15px;
  }
}

@keyframes slideInFromTop {
  0% {
    transform: translateY(-250%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-400%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(400%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideInFromBottom {
  0% {
    transform: translateY(250%);
  }
  100% {
    transform: translateY(0);
  }
}
