.home-container {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px; /* spacing between elements */
    padding-top: 50px;
    padding-inline: 20px;
}

/* Logo image */
.logo img {
    width: 100%;
    max-width: 400px;
    padding-top: 50px;
}

/* Search */
.search-wrapper {
    width: 100%;
    max-width: 600px;
    padding-top: 10px;
}

/* Home page button */
.get-started {
    display: inline-block;        /* makes it behave like a button */
    margin-top: 20px;             /* space below the <p> */
    padding: 10px 30px;
    background-color: #0073b1;
    text-decoration: none;        /* remove underline */
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s;
    
}

.get-started:hover {
    background-color: #0073b19f;
}

.get-started a {
    color: white;
}

@media(max-width: 600px){
    .search-wrapper {
        max-width: 100%;
        padding-top: 10px;
    }

    .home-container, .heaader {
        width: 100%;
    }

}

