body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden; /* Zapobiegamy przewijaniu strony */
    position: relative; /* Ustawiamy pozycję względną dla elementów potomnych */
}

section {
    height:80%;
    width:100%;
}

.container {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden auto;
    max-height: 500px;
}

p {
    color: #666;
    margin-bottom: 20px;
    line-height: 19px;
    font-size: 15px;
}

.icon {
    height: 28px;
    width: 28px;
    float: left;
}

p.social {
    line-height: 28px;
}

.linkedin {
    background: url(/images/icons.jpg) -322px -113px no-repeat;
}

.github {
    background: url(/images/icons.jpg) -217px -112px no-repeat;
}

.code {
    background-color: #f8f8f8;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    color: #333;
    margin-top: 20px;
}

/* Definicja animacji dla figury geometrycznej */
.shape {
    position: absolute;
    animation: moveShape linear infinite;
}

/* Definicja animacji */
@keyframes moveShape {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Style dla różnych kształtów */
.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 0;
}

.square {
    width: 45px;
    height: 45px;
    z-index: 0;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 60px solid #000;
    z-index: 0;
}

header {
    background-color: black;
    color: #fff;
    text-align: center;
    width: 100%;
    position: fixed;
    z-index: 2;
    top: 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

main {
    position: relative;
    top: 15%;
    width: 50%;
    height: 80%;
}

.tab {
    display: none;
}

.tab h2 {
    margin-top: 0;
}

.accordion {
    list-style-type: none;
    padding: 0;
}
.accordion li {
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.accordion li button {
    background-color: #f9f9f9;
    border: none;
    text-align: left;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    outline: none;
}
.accordion li button:hover {
    background-color: #ddd;
}
.panel {
    display: none;
    padding: 10px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden auto;
    height: 200px;
}

.logo_miccom_games {
    height: 75px;
    width: 100px;
    background: url('/images/miccom_games.jpg') no-repeat;
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 10px;
}
