* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Courier New, monospace;
}
  


.intro {
  background-image: url('home-bg.jpg');
    overflow: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex; 
    align-items: center; 
    gap: 20px;
    padding: 80px 150px;
    min-height: 110vh;
}



.navbar::after {
  content: "";
  display: block;
  clear: both;
}

.navbar {
  background-color: rgba(0,0,0,0.85);
  padding: 0px 0px;

}

.rightnav a{
  float: right;
    padding: 14px 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.69);
    text-decoration: none;
    font-size: 17px;
    font-weight: 750;
}

.navbar ul{
  list-style: none;
  display: block;
  align-items: center;
}

.rightnav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #08104f;
}

.TITLE {
  float: left;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 750;
}


.PFP {
    width: 250px;
    height: 300px;
    border: 7px solid white;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin-top: -350px;
}

.PFP:hover {
    transform: scale(1.1);
}

.content h1{
  color: white;
  animation: flicker 3s infinite alternate ease-in-out; 
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #00ffff, 0 0 40px #00ffff, 0 0 50px #00ffff, 0 0 60px #00ffff, 0 0 70px #00ffff;
  }
  20%, 24%, 55%{
    text-shadow: none;
  }
}

.content p {
  color: white;
    border: 5px solid white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}
  
.content {
    padding: 20px 20px;
    max-width: 100ch;
    overflow-wrap: break-word;
}

.content p:nth-of-type(2) {
  margin-left: -100px;
  max-width: calc(100% - 50px);
}

.section2 {
  padding: 80px;
  color: white;
  background-color: black;
  display: flex;
  flex-direction: column;  /* stack heading and images vertically */
  align-items: center;     /* horizontal center */
  justify-content: center; /* vertical center if needed */
  text-align: center;      /* still good for nested text */
}

.section2 h1{
  animation: flicker 3s infinite alternate ease-in-out;
}

.profileimages img{
  width: 250px;
  height: 300px;
  border: 7px solid white;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}


.profileimages {
  display: flex;
  gap: 50px;
  margin-top: 50px;
}