/* Resetowanie domyślnych marginesów i paddingów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font: 1em sans-serif;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #011d36;
    flex-wrap: nowrap;
    align-content: center;
    flex-direction: column;
    color: #f4f1f1;
}

.container {
    max-width: 800px;
    padding: 20px;
    background-color: #011d36;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    color: #f4f1f1;
    margin-top: 30px;
}

h1 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    color: #e3e5e6;
    margin-top: 20px;
    border-bottom: 2px solid #6578a0;
    padding-bottom: 5px;
}

h3 {
    color: gold;
    margin-top: 15px;
    font-size: 1.3em;
}
h5 {
    color: rgb(167, 180, 198);
    margin: 2em auto;
    font-size: 0.9em;
    font-weight: normal;
}
p,
ul li {
    margin: 25px 0;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

ul li:before {
    content: "•";
    color: #848a8e;
    position: absolute;
    left: 0;
}

.contact {
    margin-top: 20px;
    padding: 15px;
    background-color: #0f283e;
    color: #e3e5e6;
    text-align: center;
    border-radius: 4px;
}
