.search-container {
    width: 100%;
    height: calc(100vh - 50px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    flex-flow: column;
    background-image: url("https://cdn.forestresearch.gov.uk/2021/11/forestry-home-1.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

input {
    width: 80%;
    padding: 20px;
}

#output {
    height: 60vh;
    width: 80%;
    margin-top: 50px;
    overflow: auto;
}

.result {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    width: 90%;
    margin: auto;
    padding: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 15px;
    background: white;
}

#output::-webkit-scrollbar {
    display: none;
}

#output a {
    color: black;
    text-decoration: none;
}