body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

h1 {
    color: #4682b4;
    font-size: 2em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 1.5em;
    margin: 0.5em 0;
}

h2 a {
    text-decoration: none;
    color: #00796b;
}

h2 a:visited {
    color: #00796b;
}

h3 {
    font-size: 1.10em;
    margin: 0.5em 0;
}

h3 a {
    text-decoration: none;
    color: #00796b;
}

h3 a:visited {
    color: #00796b;
}

.profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.photo {
    width: 150px;
    height: 150px;
    border-radius: 70%;
    background-color: #e6f7ff;
    overflow: hidden;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.description {
    max-width: 500px;
    text-align: left;
}

.description p {
    color: #555;
    line-height: 1.5;
    text-align: justify; /* Wyjustowanie tekstu */
}

.locations {
    margin-top: 20px;
}

.location {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #e0f7fa;
    border-radius: 5px;
}

.location h2 {
    font-size: 1.2em;
}

.location p {
    margin: 5px 0;
    font-size: 1em;
    color: #333;
}

footer {
    background-color: #4682b4;
    color: #ffffff;
    text-align: center;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 0.9em;
    border-radius: 0 0 10px 10px;
}