@font-face {
    font-family: 'Roboto-MediumItalic';
    src: url('../fonts/Roboto/Roboto-MediumItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat-Italic-VariableFont';
    src: url('../fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Lato-BoldItalic';
    src: url('../fonts/Lato/Lato-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-LightItalic';
    src: url('../fonts/Roboto/Roboto-LightItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat-ExtraBold';
    src: url('../fonts/Montserrat/Montserrat-Medium.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'Roboto-MediumItalic', sans-serif;
    margin: 3px;
    padding: 3px;
    line-height: 1.5em;
    background-color: #3498db;
    color: #333;
}

header {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 1em;
}

section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    color: #3498db;
    text-align: center;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 8px;
}

footer {
    font-family: 'Roboto-LightItalic', sans-serif;
    text-align: center;
    margin: auto;
    padding: 1em;
    line-height: 1em;
    background-color: #3498db;
    color: #fff;
}

.container {
    max-width: 95vw;
    margin: 20px auto;
    padding: 20px;
    background-color: whitesmoke;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border-style: solid;
}

.container-headline {
    max-width: 95vw;
    margin: 20px auto;
    padding: 10px;
    background-color: whitesmoke;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat-ExtraBold', sans-serif;
    border-radius: 10px;
    border-style: solid;
}

.navbar-brand .navbar-logo {
    width: 50px; /* Ustawienie szerokości */
    height: auto; /* Automatyczna wysokość, aby zachować proporcje */
    margin-right: 5px; /* Przykładowy margines z prawej strony */
}

.navbar {
    font-family: 'Montserrat-Italic-VariableFont', sans-serif;
    background-color: #3498db;
    padding: 5px;
}

.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 2px 5px; /* Dostosuj te wartości, aby zmieniać odstępy */
    text-decoration: none;
}

.navbar a:hover {
    color: #ecf0f1;
}

.image-container {
    display: flex;
    align-items: flex-start;
    border-radius: 10px;
}

.image-container img {
    max-width: 30%;
    height: auto;
    margin-right: 20px;
}

.image-container p {
    margin: 20px; /* Resetuj marginesy dla akapitu */
}

.contact-container {
    display: flex;
    flex-direction: column;
    float: right;
    vertical-align: super;
    font-family: 'Montserrat-ExtraBold', sans-serif;
    border-radius: 10px;
}

.contact-container p {
    margin: 5px 0; /* Dostosuj odstęp między paragrafami */
    font-size: 16px;
}

.container-text {
    max-width: 95vw;
    margin: 20px auto;
    padding: 20px;
    background-color: whitesmoke;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border-style: solid;
}

.container-about_me {
    max-width: 50%;
    margin: 20px;
    border-style: solid;
    background-color: whitesmoke;
    display: inline-block;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;

}

.container-about_me1 {
    max-width: 50%;
    margin: 20px auto 40px; /* Dodaj większy margines z dołu */
    border-style: solid;
    background-color: whitesmoke;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;


}
.container-wrapper {
    text-align: center; /* Centrowanie w poziomie */
    display: flex;
    justify-content: center; /* Centrowanie w poziomie */
}