body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;

    height: 100vh;
}
.search-container {
    display: flex;
    justify-content: start;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 20px;
}
.search-box {
    width: 35%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 20px;
    box-shadow: rgb(0, 0, 0, 0.5) 0px 2px 4px 0px;
}
.search-button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    margin-left: 1%;
    
}
.search-button:hover {
    background-color: #0056b3;
}
.title {
    position:sticky;
    padding-right: 3%;
}
.results-container {
    margin-top: 20px;
    text-align: left;
    width: 60%;
    padding-left: 30px;
}
.result-item {
    padding: 10px;
    border: none;
    text-align: justify;
}
.result-item a {
    text-decoration: none;
    color: #007bff;
}
.result-item a:hover {
    text-decoration: underline;
}
.icon{
    width: 90px;
    height: 90px;
}
.site-host {
    color: rgb(112, 191, 112);
    font-size: 13px;
}

.terms {
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 30px;
    left: 0;
}

.terms ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.terms li {
    display: inline;
    margin: 0 10px;
}

.terms a {
    text-decoration: none;
    color: hsl(0, 0%, 0%, 0.6);
}

.terms a:hover {
    color: #086279;
}

.terms-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    text-align: center;
    
}
.terms-page p {
    text-align: justify;
}

.terms-page h4 {
    text-align: center;
    margin-bottom: 50px;
}


@media (max-width: 600px) {
    .search-container {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items */
    }
    .search-box {
        width: 80%; /* Adjust width for mobile */
        margin-bottom: 10px; /* Add space below the search box */
    }
    .search-button {
        width: 50%; /* Adjust width for mobile */
    }
}