header{
    background-color: skyblue;
    border: 2px solid rgb(62, 154, 190);
    height: 150px;
    display: flex;
    text-decoration: none;
}
header a img{
    padding: 0px 10px;
    float: left;
    height: 110px;
}
header a{
    color: white;
    align-self: center;
    text-decoration: none;
    font-size: 35px;
    font-family: 'Segoe UI';
    font-weight: bold;
}
nav{
    background-color:rgb(48, 46, 46);
}
nav ul{
    margin: 0px;
    padding: 0px;
}
nav ul li{
    background-color:rgb(48, 46, 46);
    position: relative;
    list-style: none;
    display: inline-block;
}
nav ul li a{
    color: white;
    font-family: 'Segoe UI';
    font-weight: 600;
    display: block;
    padding: 0px 15px;
    color: white;
    text-decoration: none;
    line-height: 50px;
}
nav ul li a:hover{
    color: skyblue;
}
nav ul ul {
    position: absolute;
    display: none;
}
nav ul li:hover > ul{
    display: block;
}
nav ul ul li {
    width: 150px;
}
#loader {
    margin: 5px 550px;
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    text-align: center;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
#movie{
    background-color: rgb(150, 99, 81);
    text-align: center;
    margin: 35px;
    padding: 20px;
}
@media screen and (max-width:750px) {
    #loader{
        margin: 5px 200px;
    }
}
@media screen and (max-width:400px){
    header{
        background-color: skyblue;
        border: 2px solid rgb(62, 154, 190);
        height: 75px;
        display: flex;
        text-decoration: none;
    }
    header a img{
        padding: 0px 10px;
        float: left;
        height: 55px;
    }
    #loader{
        display: none;
    }
    header a{
        color: white;
        align-self: center;
        text-decoration: none;
        font-size: 25px;
        font-family: 'Segoe UI';
        font-weight: bold;
    }
    nav{
        background-color: rgb(48, 46, 46);
        padding: 5px;
        border: 2px solid black;
    }
    nav a{
        color: white;
        text-decoration: none;
        font-family: 'Segoe UI';
        font-weight: 300;
        padding: 0px 10px;
    }
}
@media screen and (max-width:320px){
    header{
        background-color: skyblue;
        border: 2px solid rgb(62, 154, 190);
        height: 50px;
        display: flex;
        text-decoration: none;
    }
    #loader{
        display: none;
    }
    header a img{
        padding: 0px 10px;
        float: left;
        height: 40px;
    }
    header a{
        color: white;
        align-self: center;
        text-decoration: none;
        font-size: 10px;
        font-family: 'Segoe UI';
        font-weight: bold;
    }
    nav{
        background-color: rgb(48, 46, 46);
        padding: 3px;
        border: 2px solid black;
    }
    nav a{
        color: white;
        text-decoration: none;
        font-family: 'Segoe UI';
        font-weight: 50;
        padding: 0px 5px;
    }
}