body {
    margin: 0;
    font-family: 'AR One Sans', sans-serif;
    font-family: 'Inter', sans-serif;
    color: white;
    box-sizing: border-box;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/images/tło.jpg);
    background-position: bottom center;
    background-size: cover;
    box-shadow: inset 0 -100px 20px -50px black;
    color: white;
    cursor: default;
}

header {
    display: flex;
    align-items: center;
    padding: 30px 5%;
    justify-content: flex-end;


}

nav {
    display: inline-flex;
    align-items: center;
}

nav img {
    height: 80px;
    width: auto;
    border-radius: 50%;
    border: 3px solid #000;

}

.nav_links {
    list-style: none;
}

.nav_links li {
    display: inline-block;
    padding: 0px 20px;
}

.nav_links li a {
    font-size: 20px;
    font-weight: normal;
    transition: all 0.3s ease 0s;
    text-decoration: none;
    cursor: pointer;
    color: white;
}

@media screen and (max-width: 700px) {
    .nav_links li a {
        font-size: 20px
    }
    .wstep, .polscy, .zagraniczny{
        display: flex;
        flex-direction: column;
    }
    nav{
        display: inline-flex;
        align-content: center;
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }
    section{
        flex-direction: column;
        padding: 4rem;
    }
}
@media screen and (max-width: 550px){
    section{
        padding: 4rem 2rem;
    }
}


a {
    transition: all 0.3s ease 0s;
    cursor: pointer;
    text-decoration: none;
    color: white;
}

.nav_links li a:hover,
a:hover {
    color: #04F2DF;
}


section {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 50vh;
    padding: 6rem 6rem;
    box-sizing: border-box;
}

.right {
    flex: 1;
    text-align: center;
}

.right>h1 {
    margin: 0;
    color: white;
    font-size: 50px;
    text-align: center;
}

.right>p {
    margin: 20px 5%;
    font-size: 20px;
    font-weight: normal;
    justify-content: flex-start;
}

.left {
    flex: 1;
    text-align: center;
}

.left img {
    width: 60%;
    height: auto;
    border-radius: 50%;
    border: 4px solid #ffffff;
}

.right,
.left {
    transition: transform 0.3s ease;
}

.right:hover,
.left:hover {
    transform: translateY(10px);
}

.right button {
    background-color: #000;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
}
.right button a{
    color:white;
}
.right button:hover {
    background-color: #1c1c1c;
}

footer {
    background-color: #000;
    text-align: center;
    padding: 20px;
    font-size: 15px;

}
