* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #012a4a;
}

header {
    padding: 3rem;
    background-color: #a9d6e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #012a4a;

}

.splide__slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;   
}

.searchbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;

}

.searchbar input {
    height: 3rem;
    width: 28rem;
    padding-left: 1rem;
    border-bottom-left-radius: 25px;
    border-top-left-radius: 25px;
    border: none;
}

.searchbar button {
    height: 3rem;
    width: 5rem;
    border-bottom-right-radius: 25px;
    border-top-right-radius: 25px;
    border:none;
    background-color: #a9d6e5;
    color: #012a4a;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.content {
    display: none;
    flex-direction: column;
    border: 0.5rem solid black;
    width: 90%;
    justify-content: center;
    align-items: center;
    margin: auto;
    
}

.results {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.results img {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

