@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");

* {
    box-sizing: border-box;
}

body {
    background-color: #373b69;
    font-family: "Poppins", sans-serif;
    margin: 0;
}

h1 {
    color: #fff;
    font-family: 'freight-big-pro';
    text-align: center;
    font-size: 140px;
    font-weight: normal;
    letter-spacing: -6.5px;
    overflow-wrap: break-world;
}

header {
    background-color: #4a5099;
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
}

.search {
    background-color: #373b69;
    border: 2px solid #22254b;
    border-radius: 50px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    padding: 0.5rem 1rem;
}

main {
    display: flex;
    flex-wrap: wrap;
}

.movie {
    background-color: #4a5099;
    border-radius: 3px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    margin: 1rem;
    width: 300px;
}

.movie-info {
    color: aliceblue;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem 1rem;
    letter-spacing: 0.5px;
}

.movie img {
    width: 100%;
}

.movie-info h3 {
    margin: 0;
}

.overview {
    color: aliceblue;
    padding: 10px;
}

.more {
    color: aliceblue;
    cursor: pointer;
    text-decoration: underline;
}

.less {
    color: aliceblue;
    cursor: pointer;
    text-decoration: underline;
}

.movie-info span {
    border-radius: 3px;
    padding: 0.25rem 0.5rem;
}