@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;1,700&display=swap');

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: Roboto, sans-serif;
    background: #000000;
    background-image: url('https://source.unsplash.com/1600x900/?landscape');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-size: 120%;
    flex-direction: column;
    color: #FFFFFF;
}


input.search-bar {
    border: none;
    outline: none;
    padding: 0.4em 1em;
    border-radius: 24px;
    background-color: #c7c7c72b;
    color: #FFFFFF;
    font-family: inherit;
    font-size: 105%;
    width: Calc(100% - 80px);
}

.card {
    background: #000000;
    color: #FFFFFF;
    padding: 2em;
    border-radius: 30px;
    width: 100%;
    max-width: 420px;
    margin: 1em;
}

a {
    color: #FFFFFF;
}

@media (max-width: 500px) {
    .card {
        max-width: 250px;
    }
}

.search {
    display: flex;
    align-items: center;
    justify-content: center;

}

button {
    margin: 0.5em;
    border-radius: 50%;
    border: none;
    height: 44px;
    width: 44px;
    outline: none;
    background: #c7c7c72b;
    color: #FFFFFF;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

button:hover {
    background: #7C7C7C6b;
}

h1.temp {
    margin: 0px;
    margin-bottom: 0.4em;
}

.flex {
    display: flex;
    align-items: center;
}

.description {
    text-transform: capitalize;
    margin-left: 8px;
}