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

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    background: #fff;
    color: #000;
    font-family: Arial, sans-serif;
    border: 10px solid black;
}

.navbar {
    width: 100%;
    background: black;
    padding: 15px 0;
    text-align: center;
    border-bottom: 5px solid #000;
}

.navbar ul {
    list-style: none;
    padding: 0;
}

.navbar ul li {
    display: inline;
    margin: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 12px;
    border: 2px solid white;
    transition: 0.3s;
}

.navbar ul li a:hover {
    background: white;
    color: black;
}

.container {
    text-align: left;
    font-size: 24px;
    margin-top: 50px;
    padding: 20px;
    border: 3px solid black;
    width: 50%;
    overflow: hidden;
}

.profile-pic {
    float: left;
    margin-right: 15px;
    width: 200px;
    height: auto;
    border-radius: 10px;
}