body{
    background-image: url("orange.jpg")

}
h1 {
    text-align: center;
    margin-top: 20px;
    font-family: 'Press Start 2P', "consolas";
    color: black;
  }

.header{
    color: black;
    font-family:'Press Start 2P', "consolas";
    margin-top: 50px;

}
img {
    margin-top: 50px;
  }
.image-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
p{
    color: black;
    font-family:'Times New Roman', Times, serif;
    font-weight: bold;
    text-decoration: wavy;
    font-size: 16px;

}
.explain {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
  }
.profile-pic {
    width: 400px;
    height: 400px;
    object-fit: cover;      /* Ensures image fills circle */
    border-radius: 50%;     /* Makes it circular */
    border: 4px solid white; /* Optional: adds a clean border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Optional: soft shadow */
  }
button{
    position: relative;
    right: -1000px;
    margin-top: 0px;
}
.buttons {
    position: absolute;
    top: 20px;
    right: 1000px;  /* Try 200, 250, etc. */
    display: flex;
    gap: 10px;
    transform: translate(-100px, 50px);
  }

  
button:hover{
    background-color: black;
    color:white;
}

