*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


/*
* {
    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.translator {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: rgb(193, 59, 203);
}
.container{
    width: 690px;
    background-color: #fff;
    border-radius: 7px;
    padding: 30px;
    
        
    
}
.wrapper{
    border-radius: 5px;
    border: 1px solid #bbb
}
.wrapper .text-input{
    display: flex;
    border-bottom: 1px solid #bbb;
}

.text-input .to-text{
    border-radius: 0px;
    border-left: 1px solid #bbb;
}
.text-input textarea{
    height: 250px;
    width: 50%;
    border: none;
    outline: none;
    resize: none;
    font-size: 18px;
    border-radius: 5px;
    background: none;
    padding: 10px 15px;
}


.controls, li, .icons, .icons i{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.controls {
    list-style: none;
    padding: 12px 15px;
}


.controls .icons {
    width: 38%
}
.controls .icons i{
   width: 50px;
   color: #9f9f9f; 
   font-size: 14px;
   cursor: pointer;
   justify-content: center;
}

.controls .row select{
    border: none;
    outline: none;
    font-size: 18px;
    background: none;
    text-align: center;

}

.controls .exchange{
    color: #9f9f9f;
    font-size: 16px;
    cursor: pointer;
}

.container button{
    width: 100%;
    padding: 14px;
    margin-top: 20px;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
    background: rgb(193, 59, 203);
}
*/
.nav-container .logo {
    display: flex;
    padding-left: 5px;
    align-items: center;
}

.nav-container .logo img {
    height: 50px;
    width: 100px;
}

.navigationBar nav a {
    color: white;
    text-decoration: none;
    padding-right: 20px;
    padding-left: 20px;
    display: block;
    text-align: center;
}


.navigationBar {
    background-color: #333;
    width: 100%;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style-type: none;
}


.nav-links a:hover {
    background-color: #383838;
}

.SchipperTranslate {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 600px;
}

.SchipperTranslate p {
    margin-left: 20px;
    font-size: 14px;
    color: #333;
}

.SchipperTranslate button {
    padding: 10px 20px;
    background-color: #4c53cb;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.SchipperTranslate img {
    max-width: 100px;
}

/*
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 20px;
    }

    .text-input textarea {
        height: 200px;
        font-size: 16px;
    }

    .controls .icons {
        width: 100%;
        justify-content: space-around;
        margin-top: 10px;
    }

    .controls {
        flex-direction: column;
        gap: 10px;
    }

    .controls .row {
        flex-direction: column;
        width: 100%;
    }

    .text-input {
        flex-direction: column;
    }

    .text-input textarea {
        width: 100%;
        margin-bottom: 10px;
    }
}
*/
