body {
    font-family: "Roboto Mono", monospace;
    text-align: center;
    background-image: url("fundo.png");
    background-color: #000000;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.container {
    text-align: center;
    padding: 0px;
}

.page-title {
    color: #f0c412;
    margin: 0 0 5px;
    font-size: 60px;
}

.page-logo {
    width: 200px;
}

.alura-logo {
    width: 40px;
    position: absolute;
    top: 10px;
    right: 10px;
}

/*FORM DE CADASTRO DE FILMES*/
.form {
    align-items: center;
    color: #f3e3e3;
    display: flex;
    flex-direction: column;
    margin: 10px 0 10px 0;
    padding: 10px 0 30px 0;
}

.page-subtitle {
    color: #ffffff;
    font-weight: bold;
    font-size: 20px;
    margin: 0 0 8px;
}

.field {
    display: flex;
    margin: 3px 0 6px 0;
    width: 500px;
    
}

.form label {
    color: #fff;
    font-size: 20px;
    padding: 10px 32px;
    text-align: left;
    width: 60px;
    
}

.form input {
    padding: 10px 15px;
    width: 300px;
    border: 0;
    border-radius: 8px;
    background-color: #517eb59f;
    color:#1d1515;
    font-weight: bold;
    
}

.form ::placeholder  {
    color: #b2a4a4;
    font-weight: bold;
}

.form button {
    border: 0;
    border-radius: 8px;
    color: #383838;
    background: #f0c412;
    font-weight: bold;
    padding: 15px 20px;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.form button:hover {
    opacity: 0.8;
}


/*CATALOGO DE FILMES*/
.catalogContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.movieContainer {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 5px;
    max-width: 30%;
}

.movieContainer img {
    margin: 10px;
    max-height: 250px;
    border-radius: 6px;
}

.movieContainer img:hover {
    transform: scale(1.2);
    transition: 0.6s;
}

.nameContainer {
    color: #fff;
    height: 30px;
    padding: 16px;
    text-align: center;
    width: 150px;
    display: table-cell;
    vertical-align: middle;
}

.buttonsContainer {
    display: flex;
    align-self: center;
    align-items: center;
    justify-content: space-between;
    margin: 10px;
    padding;
    0 10px;
    width: 80%;
}

.trailerButton {
    background: #c5dd3f;
    border: 0;
    border-radius: 4px;
    color: #383838;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    text-align: center;
    transition: 0.3s;
    width: 48%;
}

.trailerButton:hover {
    opacity: 0.7;
}

.deleteButton {
    background: #a1171e;
    border: 0;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    text-align: center;
    transition: 0.3s;
    width: 48%;
}

.deleteButton:hover {
    opacity: 0.7;
}