/* All pages*/
body,
html {
  margin: 0;
  padding: 0;
  border: 0;
  margin-bottom: 25px;
  font-family: "Montserrat";
  background-color: #DBD8D2;
}

header {
  display: flex;
  column-gap: 50px;
  align-items: center;
}

#logo {
  text-decoration: none;
  color: black;
}

.top-button {
  text-decoration: none;
  color: black;
  transition: all 0.4s ease-in-out;
}

.top-button:hover, .underline {
  text-decoration: solid underline black;
  text-underline-offset: 4px;
  transform: scale(1.1);
}

#name {
  font-family: "Orbitron";
  font-size: 40px;
  margin: 25px;
}

.page-heading {
  text-align: center;
  margin-top: 20px;
}

hr {
  width: 75%;
  height: 1px;
  background-color: black;
}

.link-in-para {
  text-decoration: dotted underline black;
  text-underline-offset: 4px;
  color: black;
}

/* About */
.content {
  width: 65%;
  margin: auto;
  text-align: center;
}

/* Photography */
.photos {
  display: flex;
  justify-content: center;
  margin: auto;
  width: 80%;
}

.photos img {
  width: 400px;
  margin: 20px;
}
/* Design */

/* Contact */
.contact-detail span {
  font-size: 20px;
  font-weight: 400;
}

.social-logo {
  width: 100px;
  margin: 20px;
  transition: all 0.2s ease-in-out;
}

.social-logo:hover {
  transform: scale(1.1);
}

.socials {
  display: flex;
}

.center-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}

/* Homepage */
.carousel {
  position: relative;
}

.carousel__item {
  height: 300px;
  padding: 1em;
  font-weight: bold;
  font-size: 2em;
  color: #ffffff;
  display: none;
}

.img {
  display: block;
  height: 330px;
  margin: auto;
}

.carousel__item--selected {
  display: block;
}

.carousel__nav {
  width: 100%;
  padding: 20px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
}

.carousel__button {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.carousel__button--selected {
  background: rgba(255, 255, 255, 0.9);
}