
main *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;

}

.error-message h1 {
    font-size: 80px;
    color: #ff6f61;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.error-message p {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}


.search-box {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3vh;
    justify-items: center;
    align-items: center;
    margin: 0 auto;
}

.search-box h1 {
    font-size: 2.5vw;
    color: #ff6f61;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

#search-input {
    padding: 10px;
    width: 70%;
    border: 2px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
    font-family: 'Roboto', sans-serif;
}

button {
    padding: 10px 20px;
    background-color: #ff6f61;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
}

button:hover {
    background-color: #ff4f3d;
}

footer {
    margin-top: 20px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

footer a {
    color: #ff6f61;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    .error-message h1 {
        font-size: 60px;
    }

    .error-message p {
        font-size: 16px;
    }

    #search-input {
        width: 60%;
    }

    button {
        padding: 10px;
    }
}

.lang-active{
    opacity: 1 !important;
}
.lang-inactive{
    opacity: 0.5 !important;
}