body {
    font-family: sans-serif;
    margin: 20px;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 500px;
}

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

h1 {
    margin-bottom: 10px;
    color: #333;
}

p {
    color: #666;
    margin-bottom: 20px;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.form-container {
    text-align: left;
    gap: 10px;
    width: 80%;
}

.link-button {
    display: block;
    width: 100%;
    padding-top: 15px;
    padding-right: 0px;
    padding-bottom: 15px;
    padding-left: 0px;
    background-color: #0fb300;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.link-button:hover {
    background-color: #0b6902;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    color: #555;
    font-size: 20px;
    text-decoration: none;
}

.social-links a:hover {
    color: #333;
}

img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
