@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&family=Ubuntu&display=swap");

*{
    margin: 0;
    padding: 0;
}
body {
    background-image: url("../img/bc-image.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
    padding-right: 20px;
    padding-left: 20px;
}
img {
    max-width: 100%;
}
li {
    list-style: none;
}
.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#text {
    color: black;
    font-weight: bold;
    padding-top: 50px;
    margin-left: 60px;
    text-decoration: none;
    font-size: 50px;
    margin-bottom: 30px;
}
#form {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
#search {
    font-size: 20px;
    width: 300px;
    height: 50px;
    border-radius: 20px;
    padding: 10px;
    background-color: transparent;
    margin-right: 20px;
    color: black;
    border: 2px solid black;
}
#search:focus {
    outline: none;
}
#btn {
    width: 200px;
    height: 50px;
    border-radius: 18px;
    background: black;
    font-size: 30px;
    font-weight: bolder;
    color: #fff;
    border: 2px solid black;
}
#item {
    margin-bottom: 60px;
}
#box {
    display: flex;
    gap: 50px;
    align-items: center;
}
#result__title {
    font-size: 40px;
    margin-bottom: 15px;
    color: #243863;
    max-width: 400px;
}
#result__text {
    font-family: "Ubuntu", sans-serif;
    font-size: 20px;
    max-width: 340px;
    margin-bottom: 30px;
    color: #3b7a65;
}
