header {
    width: 100vw;
    height: 50px;
    font-size: 18px;
    background-color: azure;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

main {
    width: 100vw;
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.primary {
    margin-bottom: 150px;
    width: 40vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.primary .logo {
    height: 124px;
    margin-bottom: 30px;
}

.primary .logo img {
    height: 100%;
}

.primary .textbox {
    width: 100%;
}

.searchbar {
    width: 100%;
    height: 24px;
    padding: 6px;
    border-radius: 10px;
    font-size: 17px;
    border-color: lightgrey;
    border-style: solid;
}

footer {
    width: 100vw;
    height: 50px;
    font-size: 18px;
    background-color: azure;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
}