body {
    background-color: #CCFFFF;
    margin: 0;
    padding: 0;
    font-family: Bahnschrift, sans-serif;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 120px;
}

.left-side {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #009999;
    font-size: 2.5em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.photo {
    border: 3px solid #009999;
    border-radius: 1.5cm;
    width: 200px;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu {
    list-style-type: disc;
    padding-left: 1.1em;
    margin-top: 100px;
}

.menu li {
    margin: 20px 0;
}

.menu a {
    color: #660033;
    text-decoration: none;
    font-size: 1.4em;
}

.menu a:hover {
    text-decoration: underline;
}