
body{
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  background-color: white;
}
.wrapper {
  margin: 0 auto;
  max-width: 64rem;
}

header {
  background-color: lightpink;
  border: 3px solid palevioletred;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 200%;
  color: palevioletred;
text-shadow: .5px .5px .5px white;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
gap: 5px;
background-color: palevioletred;
padding: 5px 5px;
border-radius: 0px;
text-align: center;
}

nav a {
text-decoration: none;
color: black;
font-weight: bold;
padding: 1rem 2rem;
text-align: center;

}
 
nav a:hover {
  color: white;
  border-radius: 2rem;
  text-decoration: underline;
}

.intro {
  text-align: center;
  padding: 30px;
}

.profile-pic {
  width: 200px;
border-radius: 50%;
margin-bottom: 15px;
}

.about {
  padding: 30px;
  text-align: center;
  
}

.about-gallery {
 display: block;
 margin: auto;

}

.sports-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.sports-gallery img {
  max-width: 200px;
  height: auto;
}

.sports-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.sports-box {
  background: lightpink;
  padding: 10px;
  width: 200px;
  border-radius: 10px;
}

.contact {
  text-align: center;
  color: deeppink;
}

footer {
  background-color: #c0cac9;
  padding: 1em;
  display: flex;
  justify-content: space-around;
  align-items: center;
}


footer a {
  font-size: 160%;
  text-decoration: none;
  color: palevioletred;
}


footer a:hover {
  color: palevioletred;
  text-shadow: 0 0 5px white;
}



.signature {
  font-family: "Brush Script MT", cursive;
  font-size: 40px;
  color: #ff69b4;
  text-align: right;
  margin-top: 40px;
}

p {
  font-size: 125%;
  line-height: 1.4;
  margin-left: 1in;
  margin-right: 1in;
}

h1 {
  color: palevioletred;
  text-align: center;
}

h2 {
  color: palevioletred;
  text-align: center;
}

