/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

html, body {
  background-color: black;
  margin: 0;
  padding: 0;
  height: 100%;
  color: white;
  font-family: Verdana;
} 

#BigBox{
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  width: 900px;
}


.firstheading {
  font-family: 'Brush Script MT', cursive;
  color: purple;
}

.introheading {
  color: purple;
}

.hobbiesheading{
  color: purple;
}


.flex-wrapper {
  display: flex;
  gap: 10px;
  max-width: 1000px;
  margin-top: 5px;
  margin-bottom: 5px;
  align-items: stretch;
}

.left-column {
  display: flex;
  flex-direction: column;
  flex: 4;
  gap: 10px;
}

.left-box,
.right-box {
  padding: 10px;
  border: 2px solid purple;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 20px purple;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
  color: white;
}

.right-box.tall {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.left-box:hover,
.right-box:hover {
  transform: scale(1.03);
}

.SocialMedia{
  color: violet;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.SocialMedia:hover {
  color: hotpink;
}

.MyHobbies{
  color :violet;
  transition: color 0.5s;
}
.MyHobbies:hover{
  color: pink;
}

.MyHobbies:active{
  color: white
}

.pfpImage{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid purple;
  margin-bottom: 10px;
  margin-right: 5px;
  transition: border-radius 0.4s ease, transform 0.4s ease;
}

.pfpImage:hover {
  border-radius: 0%;
  transform: scale(1.05);
  box-shadow: 0 0 10px hotpink;
}

.RalseiImage {
  filter:  blur(6px);
  transition: filter 1s, transform 1s;
}

.RalseiImage:hover{
  filter:  blur(0px);
  transform: scale(1.05);
}

.RalseiImage:hover .RalseiText{
  visibility:hidden;
}

.card{
  border: 2px solid purple;
  border-radius: 10px;
  background-color: #1a1a1a;
  width: 300px;
  margin: 20px auto;
  text-align: center;
  box-shadow: 0 0 15px purple;
  
  overflow: hidden;
  background-image: url('/sleepover.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.card-blur{
  backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.4); /* Optional dark overlay */
  padding: 20px;
  color: white;
  text-align: center;
}

.card-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid pink;
  margin-bottom: 10px;
  transition: border-radius 0.4s ease, transform 0.4s ease;
  
}

.card-img:hover {
  border-radius: 0%;
  transform: scale(1.05);
  box-shadow: 0 0 10px hotpink;
}

.card-contributions {
  color: lightpink;
  font-style: italic;
  margin-bottom: 15px;
}

.card-quote {
  color: lightpink;
  font-style: italic;
  margin-bottom: 15px;
}

.card-link {
  display: flex;
  justify-content: center;
  gap: 15px;
  color: violet;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.card-link:hover {
  color: hotpink;
}

@keyframes BlurFilter {
    from {
      filter: blur(1px);
    }
    
    to {
      filter: blur(8px);
    }
}

