@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500&display=swap');

html{
    font-family: 'Rubik', sans-serif;
}
body {
    display: flex;
    background-color: rgb(0, 0, 0);
    color: white;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
}
header {
    width: 100%;
}
main.container {
    display: flex;
    margin-right: auto;
    margin-left: 10px;
    margin-bottom: 0px;
    flex-direction: column;
}
a{
    text-decoration: none;
}
a.nav-logo {
    margin: 0;
    padding: 0;
}
nav.search{
    margin-bottom: 20px;
    margin: 0 auto 0 auto;
    width: 50%;
    padding-top: 10px;
    border-radius: 30px;
    padding-top: 0px;
}
.search{
    width: 100%;
    display:flex;
    align-items:center ;
    position: relative;
}

.search-bar{
    width: 100%;
    border: none;
    padding: 20px;
    font-size: 15px;
    background-color: white;
    border-radius: 30px;
}
.search-bar:focus{
    border: none;
    outline: none;
}
button.search-button {
    border: 0;
    padding: 15px;
    padding-bottom: 14px;
    position: absolute;
    right: 0;
    background: none
}
h1{
    font-size: 4rem;
    text-align: center;
    text-shadow: 3px 4px 3px rgb(154 0 0 / 55%);
    color: rgb(255, 80, 80);
    margin: 40px 0 0 0;
}
h2{
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 0px;
}
h3.actors{
    width: 60%;
}
p {
    width: 60%;
}
p.no-result {
    margin: 200 200 200 485;
    width: 100%;
    text-align: center;
}
p.prototype-message {
    width: auto;
    font-size: 1.5rem;
    text-align: center;
    margin: 0 0 30px 0;
    padding: auto;
}
img{
    border-radius: 20px;
    box-shadow: 5px 5px 0 #ff0f0f;
    margin: 20px 20px 30px 10px;
    width: 100%;
    max-width: 1000px;
    height: auto;
    transition: transform 0.3s ease;
}
a {
    border: 3px solid;
    padding: 18 25;
    border-radius: 40px;
    border-style: none;
    color: rgb(0, 0, 0);
    background-color: white;
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin-left: 10px;
    font-size: 15px;
}
a:hover {
    background-color: rgb(255, 49, 49);
    color: white;
}
a.nav-logo {
    background: transparent;
    width: auto;
}
button{
    border-radius: 25px;
}
button:hover {
    background-color: rgb(255, 52, 52);
}
.no-results{
    font-size: 30px;
}
hr.separator-body-foot {
    color: white;
    width: 50%;
    margin: 20px;
}
footer{
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 auto;
}