

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    color: #555;
    
}

ul { list-style: none; padding-left: 5px; }

a {
    color: #247ffe;
    text-decoration: none;
}

.bar {
    background-color: #e60f33;
    padding:15px;
    border-top: solid 1px #cdcdcd;
    border-bottom: solid 1px #cdcdcd;
    height: 50px;
}

.nav-bar {
    margin: auto;
    display: flex;
    justify-content: center;
    background-image: linear-gradient(#e60f33, #e60f33 );
    height: 18px;
    
}

.nav-bar ul {
    width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-bar ul li {
    margin-right: 2px;
    line-height: 40px;
}

.nav-bar ul li a {
    color: white;
    padding: 10px 10px;
}


.content {
    max-width: 1440px;
    margin: auto;
    grid-gap: 3rem;
    display: grid;
    gap: 3rem;
    grid-template-areas: "sidebar main anchors";
    grid-template-columns: minmax(0,15rem) minmax(0,2.5fr) minmax(0,15rem);
    padding-left: 1rem;
    padding-right: 1rem;
    
}

.main-sinopse {
    margin-left: 20px;
}

table { 
    
    border-color: black;
    width: 550px;
    padding: 50px;
    margin-left: 200px; 
}
thead {
    background-color: #b9afaf;
}

.anchors-title {
    display: flex;
    justify-content: center;
    background-color: #b690fd;
    width: 253px;
    height: 30px;
    border: 2px solid black;
}

figure img {
    margin-top: 5px;
    border: 2px solid black;
} 

.relacionados {
    display: flex;
    justify-content: center;
}
.relacionados ul {
    list-style: inside;
    
}

aside {
    width: 350px;
}

  
header { 
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    width: 20%;
    display: flex;
    justify-content: center;
    padding: 10px 10px;
}

header .logo img {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 5px 10px;
}

header .search {
    width: 60%;
    display: flex;
    justify-content: center;
}

input {
    width: 40%;
    height: 35px;
    border: 2px solid #1b181888;
    border-radius: 5px 0 0 5px;
    padding: 5px 15px;
    color: #555;
}

button {
    background-color: #e60f33;
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    border-radius: 3px;
    border: 2px solid black;
    cursor: pointer;
}


.login {
    width: 20%;
    display: flex;
    justify-content: center;
    
}

.login a {
    padding: 10px;
    margin-right: 8px;
    color: white;
    background-color: #e60f33;
    border-radius: 15px;
    border: 2px solid black;
}

a:hover {
    text-decoration: underline;
    transform: scale(1.04);
    transition: 0.2s;
}




