@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {font-family: 'Inter', sans-serif;}

body {
    background-color: #0f172a;
    color: #fff;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.container {
    background-color: #1e293b;
    margin: 20px;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #1e293b;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    
}

.container:hover {
    border: 2px solid #5675a7;;
    box-shadow: 0 0 40px rgba(42, 64, 118, 0.8);
}

.section-element {
    cursor: pointer;
    background-color: #27354c;
    margin: 20px 10px;
    border-radius: 8px; 
    padding: 30px;
    border: 2px solid #27354c;
    transition: border 0.3s ease-in-out;
}

.section-element:hover {
    border: 2px solid #5675a7;
}

.contact-links {
    display: flex;
    width: 100%;
    justify-content: space-around;
    margin-top: 20px;
}

.contact-links a {
    text-align: center;
    margin: 10px;
    padding: 10px;
    border-radius: 8px;
    background-color: #27354c;
    border: 2px solid #27354c;
    width: 100%;
}

.contact-links a:hover {
    border: 2px solid #5675a7;
}

header {
    text-align: center;
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
}

h1, h2, h3 {
    font-family: 'Fira Code', sans-serif;
    color: #6285bc;
}

img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

section {
    margin-top: 20px;
}

h2 {
    border-bottom: 1px solid #ccc;
}

article {
    background-color: #27354c;
    margin-bottom: 15px;
}

footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.8em;
    color: #666;
}

#kontakt a {
    text-decoration: none;
    color: #999;
    transition: all 0.3s ease;
}

#kontakt a:hover {
    color: #ddd;
}

#projekty ul,
#umiejetnosci ul {
    list-style-type: none;
    padding: 0;

}
