.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    flex-wrap: nowrap;
}

.title-container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title {
    font-size: 3.333vw;
    font-family: "inter";
    font-weight: 400;
    color: #ffffff;
    margin: 20px;
}

.search-container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 0 20px;
    margin-bottom: 20px;
}

#search-input {
    max-width: 28vw;
    font-family: "inter";
}

#search-button{
    margin-left: 10px;
}

.movie-list-container {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    overflow-y: auto;
    flex-wrap: wrap;
    align-content: flex-start;
}

.movie-entry{
    display: flex;
    background-color: #1A1A1A;
    width: 431px;
    height: 280px;
    margin: 22px;
    border-radius: 11px;
    flex-direction: row;
    align-content: stretch;
    justify-content: flex-start;
    align-items: center;
}

.movie-entry img {
    height: 100%;
    border-radius: 11px 0 0 11px;
    margin-right: 10px;
}

.movie-details {
    display: flex;
    height: 100%;
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: column;
    align-content: stretch;
    justify-content: center;
    align-items: center;
}

.movie-title {
    font-size: 22px;
    font-family: "inter";
    font-weight: 200;
    color: #ffffff;
    margin: 5px 0;
    max-height: 76px;
    overflow: hidden;
    text-overflow: ellipsis;    
}

.movie-description-container{
    display: flex;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}

.movie-description-title{
    font-size: 10px;
    font-family: "inter";
    font-weight: 600;
    color: #ffffff;
    margin: 0px;
}

.movie-description{
    font-size: 10px;
    font-family: "inter";
    font-weight: 300;
    color: #ffffff;
    margin: 0px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 60px;
}

.movie-date-size-container {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin: 5px 0;
}

.movie-release-date {
    font-size: 10px;
    font-family: "inter";
    font-weight: 600;
    color: #ffffff;
    margin: 0px;
}

.release-date {
    font-size: 10px;
    font-family: "inter";
    font-weight: 300;
    color: #ffffff;
    margin: 0px;
}

.movie-size {
    font-size: 10px;
    font-family: "inter";
    font-weight: 600;
    color: #ffffff;
    margin: 0px;
    margin-left: 9px;
}

.release-size {
    font-size: 10px;
    font-family: "inter";
    font-weight: 300;
    color: #ffffff;
    margin: 0px;
}

.movie-code-name-container {
    display: flex;
    width: 100%;
    margin: 0px 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}

.movie-code-name-title {
    font-size: 10px;
    font-family: "inter";
    font-weight: 600;
    color: #ffffff;
    margin: 0px;
}

.movie-code-name {
    font-size: 8px;
    font-family: "inter";
    font-weight: 300;
    color: #ffffff;
    margin: 0px;
    background-color: #302F2F;
    padding: 5px;
    border-radius: 5px;
    width: 95%;
}

.mag-button {
    font-family: "inter";
    font-weight: 400;
    color: #ffffff;
    font-size: 10px;
    margin-top: 5px;
    margin-left: 0px;
    align-self: flex-start;
    width: 95%;
}

@media (max-width: 479px) {
    .title {
        font-size: 9vw;
        font-family: "inter";
        font-weight: 400;
        color: #ffffff;
        margin: 20px;
    }

    #search-input {
        max-width: 69vw;
        font-family: "inter";
    }

    .movie-list-container {
        display: flex;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: flex-start;
        flex-direction: row;
        overflow-y: auto;
        flex-wrap: wrap;
        align-content: flex-start;
    }

    .movie-entry {
        width: 95vw;
        height: 63.5vw;
        margin: 1.5vw;
        border-radius: 11px;
        }

    .movie-description-title {
        font-size: 9px;
        font-family: "inter";
        font-weight: 600;
        color: #ffffff;
        margin: 0px;
    }

    .movie-description {
        font-size: 9px;
        font-family: "inter";
        font-weight: 300;
        color: #ffffff;
        margin: 0px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: 54px;
    }

    .movie-code-name {
        font-size: 7px;
        font-family: "inter";
        font-weight: 300;
        color: #ffffff;
        margin: 0px;
        background-color: #302F2F;
        padding: 5px;
        border-radius: 5px;
        width: 95%;
        max-height: 31px;
    }
}