body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
}

.container {
    background-color: #336699;
    padding: 20px;
    margin-top: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 600px;
    color: #ffffff;
}

.profile img {
    border-radius: 50%;
    width: 180px;
    height: 180px;
}

.profile h1 {
    margin: 10px 0;
}

.profile p {
    margin: 5px 0;
}

.position {
    font-size: 1.2em;
    font-weight: bold;
}

.contact {
    margin-top: 10px;
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
}

.contact a {
    display: inline-block;
    margin: 0 20px;
    text-decoration: none;
    color: #ffffff;
}

.contact img {
    width: 50px;
    height: 50px;
    vertical-align: middle;
    border-radius: 0;
}

.info-table {
    background-color: #ffffff;
    color: #000000;
    margin-top: 20px;
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
}

.info-table td {
    padding: 10px;
    border: 0;
}

.info-table hr {
    border: 0.5px solid #808080;
}

.save-vcf {
    margin-top: 20px;
}

.save-vcf a {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.link-header {
    font-family: verdana;
    color: #326295;
    font-size: 5;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="file"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0 10px 0;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}