/* 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." */

body {
  background-image: url("sleepover.png");
  background-size: cover;
  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;
}

.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;
}

@keyframes BlurFilter {
    from {
      filter: blur(1px);
    }
    
    to {
      filter: blur(8px);
    }
}

