html {
  scroll-behavior: smooth;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

body {
  margin: 0px;
  margin-top: 100px;
  text-align: center;
}

h3 {
  font-weight: normal;
}

h1 {
  text-align: center;
}

section p {
  padding-top: 50px;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #333;
  display: flex;
  align-items: center;
  transition: padding 0.3s ease;
  z-index: 1000;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}
nav ul li {
  display: inline-block;
}
nav a {
  color: white;
  text-decoration: none;
  padding: 10px;
  transition: color 0.5s ease-in-out;
}
nav a:hover {
  background-color: rgb(96, 96, 96);
}

.content {
  position: relative;
  padding-top: 50px;
}

.active-link {
  font-weight: bold;
  color: red;
  transition: color 0.5s ease-in-out;
}

.logo {
  margin-right: auto;
  color: rgb(255, 255, 255);
}

.larger-logo {
  font-size: 30px;
}

.smaller-logo {
  font-size: 15px;
}

.larger-link {
  font-size: 20px;
}

.smaller-link {
  font-size: 10px;
}

#aboutLink {
  padding-right: 30px;
}

.footer {
  background-color: #333;
  padding-bottom: 1px;
}

.footer ul {
  list-style: none;
  text-align: center;
  color: white;
}

#facebookIcon, #linkedinIcon {
  padding: 20px;
  width: 50px;
  height: 50px;
}

.footer ul li {
  display: inline-block;
}

.carousel {
  position: relative;
  margin: auto;
  max-width: 1000px;
  padding-left: 100px;
  padding-right: 100px;
}

.slides {
  overflow: hidden;
}

.inactiveSlide {
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.activeSlide {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.prev {
  left: 5%;
}

.next {
  right: 5%;
}

.prev::before {
  content: "\f104";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.next::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.threeColumn {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}

.threeColumn .column {
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.threeColumn .column img {
  width: 100px;
  height: 100px;
  margin: auto;
}
.threeColumn .columnDivider {
  padding: 1px;
  background-color: #333;
}

#parallax {
  background-image: url("/assets/UnrealSS.JPG");
  background-attachment: fixed;
  background-size: 100%;
}

.innerParallax {
  background-color: rgba(146, 89, 89, 0.75);
}

.gameDescriptions {
  display: flex;
}

.gameDescription {
  padding: 30px;
  margin: auto;
}

.openModalButton {
  width: 100px;
  height: 100px;
}

#Games {
  background-color: rgb(132, 165, 194);
}

.inactiveModal {
  display: none;
  position: fixed;
}

.activeModal {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0%;
  left: 0;
  padding: auto;
  background-color: rgba(1, 0, 0, 0.7);
  color: white;
  width: 100%;
  height: 100%;
  z-index: 500;
}

.innerModal {
  margin: auto;
}

.closeModalButton {
  height: 20%;
  width: 10%;
}

.openModalButton:hover {
  filter: brightness(50%);
}

.modal {
  position: relative;
}

section {
  padding-top: 50px;
}

.aboutContainer {
  margin: auto;
  width: 60%;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

section p {
  width: 50%;
  margin: auto;
}

.aboutContainer img {
  width: 350px; 
  height: 350px; 
  border-radius: 50%;
  object-fit: cover;
}
/*# sourceMappingURL=styles.css.map */
