body{
    background-color: #191919;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
.app-header{
    width: 700px;
    margin: 16px auto 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content:space-between;
    color:white;
}
#logo{
    height: 48px;
    width: auto;
    display: block;
}
.app-header h1{
    color: white;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}
.container{
    width: 700px;
    margin:26px auto;
    color:white;
    
}
.movie-container{
    width: 700px;
    margin:26px auto;
    color:white;
    color: rgba(255, 255, 255, 0.678) ;
    display: flex;
    justify-content: space-between;
}

.d-none{
    display: none;
}
.search{
    display: flex;

}
.btn{
    background-color: red;
    color:white;
    padding: 16px 30px;
    font-size: 18px;
    border: none;
    width: 25%;
    cursor: pointer;
}
input{
    color:white;
    width: 75%;
    padding: 16px;
    border: none;
    font-size: 18px;
    background-color: #6464643e;
    box-sizing: border-box;
}
input:focus{
    outline:none;
    border: none;

}
.poster{
    position: relative;
}
.ratings{
    position:absolute;
    bottom: 0;
    background-color: #fff;
    margin: 16px;
    padding: 4px 12px;
    color: black;
    border-radius: 4px;
}
.loader-container{
    display: flex;
    justify-content: center;
}

.loader {
    border: 2px solid #f3f3f353; /* Light grey */
    border-top: 2px solid  red; /* Blue */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }