body {
    margin: 0;
    padding: 0;
    background-color: #000; /* Black background */
    color: #e91515; /* Red text color */
    font-family: Arial Bold;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

/* Container for content */
.container {
    width: 90%;
    max-width: 480px;
    padding: 20px;
    border-radius: 10px;
}

/* Profile Photo Styling (rectangular) */
.profile-pic {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    margin-bottom: 15px;
    border: 3px solid #fff;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.social-links-container {
    background-color: #000; /* Black background */
    padding: 20px;
    color: #fff; /* White text */
}

h1 {
    margin-top: 0;
    font-size: 1.5rem;
}

.icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.icons-wrapper a {
    color: #fff; /* White icon and text color */
    text-decoration: none; /* Remove underlines from links */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: color 0.3s ease; /* Smooth hover effect */
}

.icons-wrapper a:hover {
    color: #aaa; /* Slightly grey on hover */
}

.icons-wrapper i {
    font-size: 2rem; /* Icon size */
    margin-bottom: 5px;
}

.icons-wrapper span {
    font-size: 0.8rem;
}

footer {
    text-align: center; /* Centers the text within the footer */
    padding: 10px; /* Adds some space above and below the text */
    font-size: 0.8em; /* Makes the text slightly smaller */
    background-color: #000; /* Optional: adds a light gray background */
    margin-top: 20px; /* Optional: adds space between main content and footer */
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  cursor: pointer;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Caption text */
.text {
  color: #faf3f3;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}