html {
    scroll-behavior: smooth;
}

body 
{
    margin: auto;
    font-family: 'Mulish',Helvetica,Arial,Lucida,sans-serif;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.navigation {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 8vw;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 1;
    font-weight: 500;
}
.menu-icon {
    width: 48px;
    height: 48px;
    object-fit: contain; /* lub cover, w zależności od oczekiwanego efektu */
    cursor: pointer;
}

.navigation .menu-icon {
    display: none;
    cursor: pointer;
}

.navigation img 
{
    width: 280px;
    margin-right: 20px;
    cursor: pointer;
}

.navigation ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin: 0;
}

.navigation li {
    margin: 0 12px;
}

.navigation ul li a
{
    text-decoration: none;
    color: rgb(21, 21, 100);
    font-size: 17px;
    transition: 0.3s ease;
}


.navigation ul li a.active,
.navigation ul li a:hover
{
    color: #fdbd13;
}

/*-----------------Registration---------------*/

.registration-container {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    width: 350px;
    margin-bottom: 20px;
}

.registration-container h2 {
    color: rgb(21, 21, 100);
}

.registration-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #606366;
}

.form-group input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #51565C;
    border-radius: 4px;
}

.form-group input[type="password"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #51565C;
    border-radius: 4px;
}

.form-group button {
    background-color: #4D5356;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.form-group button:hover {
    background: rgb(21, 21, 100);
}

.login-link {
    text-align: center;
    margin-top: 10px;
    color: #4D5356;
}

.login-link a {
    color: #5f7185;
    text-decoration: none;
    font-weight: bold;
}

.login-link a:hover {
    color: rgb(21, 21, 100);
}

 
@media only screen and (max-width: 1000px) {

    .navigation{
        box-sizing: content-box; 
    }
        
    .navigation ul { 
        display: none;
        flex-direction: column;
        position: absolute;
        top: 57px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0px 9px 27px -17px rgba(0, 0, 0, 1);
    }
      
    .navigation ul.show {
        display: flex;
    }
    
    .navigation li {
        margin: 0;
        text-align: center;
    }
    
    .navigation .menu-icon {
        display: block;
        margin-left: auto;
    }
    
    
    .navigation ul li a {
        display: block;
        padding: 15px;
    }
    
    .home {
        padding: 10px; 
    }
    
    .home h2 {
        font-size: 1.8rem; 
        margin-bottom: 10px; 
    }
    
    .home p {
        font-size: 0.9rem; 
        margin-bottom: 8px; 
    }
    
    
    .home h2,
    .home p {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .home h2 {
        font-size: 1.5rem; 
        margin-bottom: 5px;
    }
    
    .home p {
        font-size: 0.8rem; 
    }
    }