@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

body{
    margin:0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family : 'Google Sans',sans-serif;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.logoContainer img{
    width: 350px;
}

.searchBar{
    width: 100%;
    max-width: 545px;
    display: flex;
    justify-content: center;
}

.searchBar input{
    width: 100%;
    border-radius: 35px;
    background-color: white;
    border: 2px solid lightgrey;
    padding: 0.8rem;
    margin: 16px 20px;
}

.searchBar input:hover, .searchBar input:focus{
    border: 2px solid #dadce0;
    box-shadow: 0px 1px 6px #dadce0;
    background-color: white;
    outline: none;
}

.btn {
    background-color: #f8f9fa;
    border: 1px solid #f8f9fa;
    color: #3c4043;
    padding: 10px 16px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
}

.btn:hover {
    border: 1px solid #dadce0;
    color: #202124;
}