html, body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    height: 96vh;
    aspect-ratio: 1 / 1.414;
    border: 1px solid rgb(215, 215, 215);
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    color: #404040;
}

h1 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 2.5rem;
    margin-bottom: 0;
}

header img {
    width: 20%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}

main {
    display: flex;
    gap: 0.5rem;
    padding: 10px;
    font-size: 0.8rem;
    color: #666;
}

main > section:first-child {
    border-right: 1px solid #ccc;
}

main > section:first-child ul {
    list-style: disc;
    padding: 0 1rem;
}

main > section:last-child article ul {
    list-style: disc;
    padding: 0 1rem;
}

main > section:last-child article > ul {
    list-style: none;
    padding: 0;
}

main > section {
    flex: 1;
    padding: 5px;
}

article {
    margin-bottom: 1.7rem;
}

h2 {
    font-size: 0.95rem;
    letter-spacing: 0.1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #404040;
    margin-bottom: 1rem;
}

h3 {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #404040;
}

h3 span {
    font-weight: 500;
    font-style: italic;
    color: #666;
}

p {
    text-align: justify;
}