* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace, sans-serif;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 20px;
    background-color: #f4f4f4;
}

.container {
    text-align: center;
    padding-top: 30px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 80%;
    max-width: 1500px;
    min-width: 400px;
}

.profile-image {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
}

h1 {
    font-size: 2em;
    font-family: "Permanent Marker", sans-serif;
    margin-bottom: 10px;
    color: #333;
}

p {
    font-size: 1.1em;
    color: #666;
    padding: 0 50px;
}

.permanent-marker-regular {
    font-family: "Permanent Marker", cursive;
    font-weight: 400;
    font-style: normal;
  }
  
.gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: 30px auto;
    padding: 10px;

}

.gallery img {
    width: 100%;
    max-width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
  }

.gallery::after {
    content: "";
    width: 350px;
  }