/* Reset für verschiedene HTML-Elemente */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset für ältere Browser */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    line-height: 1;
    background-attachment: fixed;
    background-image: url('../img/homepage.png');
    margin: 0px;
    padding: 0px;
    border: 0px;
}

.search-container {
    align-items: center;
    flex-direction: column;
    display: flex;
    height: auto;
    width: 50%;
    margin-top: 200px;
    margin-right: auto;
    margin-left: auto;
}

.search-text {
    letter-spacing: -1px;
    margin-bottom: 5px;
    margin-left: 20px;
    align-self: start;
    color: #6C8494;
    font-size: 32px;
    font-family: 'PT Sans';
}

.search-box {
    width: 100%;
}

.search-box input {
    border-radius: 33px;
    border: 3px solid #6C8494;
    width: 100%;
    height: 50px;
    color: #6C849487;
    box-shadow: 0px 3px 6px #00000029;
    box-sizing: border-box; /* Verhindert das Überschreiten der Containerbreite */
}

.search-box input:focus {
    outline: none;
}

input[type="text"]::placeholder {
    color: #6C849487;
}

input[type="text"] {
    line-height: 50px; /* Gleiche Höhe für line-height */
    padding: 0 10px; /* Optionaler Abstand innen (links/rechts) */
    font-size: 25px;
}

.textbox-container {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    margin-top: 100px;
    margin-bottom: 50px;
    max-width: 100%;
}

.textbox {
    text-align: center;
    box-shadow: inset 0px 3px 6px #00000029, 0px 3px 6px #00000029;
    font-size: 18px;
    border-radius: 33px;
    padding: 25px;
    border: solid 1px #707070;
    color: #6C8494;
    font-weight: 400;
    font-family: 'PT Sans';
    background-color: #ECE4DB;
    max-width: 50%;
}

.textbox_1 {
    /* Zusätzliche Stile für .textbox_1 (falls erforderlich) */
}

.textbox_2 {
    margin-top: 30px;
}

@media (max-width: 931px) {
    .search-container {
        width: 70%;
    }

    .textbox {
        max-width: 70%;
    }

    .search-text {
        letter-spacing: -1px;
    }
}

@media (max-width: 682px) {
    .search-text {

        letter-spacing: -1px;
        font-size: 25px;
        text-align: center;
    }

    input[type="text"] {
        font-size: 25px;
    }
}

@media (max-width: 565px) {


    .search-text {
        margin-left: 0;
        text-align: center;
        letter-spacing: -1px;
    }

    input[type="text"] {
        font-size: 20px;
    }
}
@media (max-width: 523px) {

    .search-text {
        margin-left: 0;

    }
}

@media (max-width: 425px) {

    .search-text {
        letter-spacing: normal;
    }

    input[type="text"] {
        font-size: 17px;
        width: 100%; /* Verhindert das Überlaufen der Suchbox */
    }
}
