/* clears default browser css*/
* {
  box-sizing: border-box; /* Makes sizing more predictable */
  margin: 0;
  padding: 0;
}

body {
    background-color: rgb(0, 0, 0);
    background-image: url("../images/ss085.gif");  
    overflow-y: hidden;
}

/*text styling*/
p, li {
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color:rgb(94, 135, 205);
    margin-bottom: 10px;
}

a {
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color:rgb(65, 114, 206);
    font-size: 17px;
}

.back a {
    color:rgb(169, 188, 223);
    text-decoration: none;
    font-weight: bolder;
    
}

a:hover {
    color: rgb(106, 142, 208);
}

.back a:hover{
     color:rgb(174, 207, 231);
     text-shadow: 0 0 10px rgb(147, 213, 253);
}


#star-1 {
    position: absolute;
    left: -33px;
    top: 28px;
    z-index: 20;
}

#star-2 {
    position: relative;
    left: 8%;
    bottom: 630px;
    z-index: 20;
}


.back {
    position: relative;
    z-index: 20;
    text-align: center;
    top: 48px;
    bottom: 10px;
    right: 2%;
    width: auto;
    
   
}


.inline-image {
   vertical-align: middle;
   margin-top: -4px;
}

.grid-container {
    display: grid;
    justify-content: center;
    align-items: center;

    min-width: 1100px;
    width: 80%;
    height: 100vh;
    padding: 10px;

    grid-template-areas: 
    'movies movies movies movies'
    'movies movies movies movies'
    'sona about about .'
    ;

    position: relative;
    left: 10%;

    

}

.movie-listings {
     background-color: rgb(1, 1, 18);
    grid-area: movies;
 
    width: 1100px;
    height: 660px;
   
    position: relative;
    top: 30px;

    border: 20px solid transparent;
        border-image: url("../images/cloudy-blue.jpg") 29 round;
        border-image-outset: 0px;

    bottom: 0;
   
}

.sona {
   
    grid-area: sona;

    width: auto;
    height: 345px;

    position: relative;
    z-index: 10;
    right: 119px;
    bottom: 60px;

   

}

.speechbubble {
    position: absolute;
    z-index: 15;
    bottom: 280px;
    left: 13%;
}

.text {
    position: absolute;
    z-index: 16;
    width: 132px;
    left: 80px;
    bottom: 346px;
    color: rgb(120, 178, 237);
    text-shadow: 0 0 10px rgba(147, 200, 253, 0.868);

}

.film {
    font-size: 18px;
}


.about {
    grid-area: about;
   
    width: 820px;
    height: 280px;

   position: relative;
    right: 189px;
    bottom: 31px;

    background-color: rgb(26, 46, 102);
  
    border: 7px solid transparent;
    border-color: rgb(27, 41, 88);
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
   
    font-size: 16px;
    text-align: center;

      border: 15px solid transparent;
        border-image: url("../images/blue-opal-border.gif") 40 round;
        border-image-outset: 5px;

        
       

}

.about a {
     color: rgb(145, 172, 222);
     
}

.about a:hover {
    text-shadow: 0 0 3px rgba(72, 138, 196, 0.631);
}

.shadow {
    background-color: rgb(20, 37, 83);
    height: auto;
    padding: 15px;
}

.emph {
    color: rgb(145, 172, 222);
}


.spoilers {
    font-weight: bolder;
     font-size: 24px;
     text-align: center;
     
    color: rgb(145, 172, 222);
    margin-top: 20px;
    text-shadow: 0 0 3px rgba(72, 138, 196, 0.631);
}

.scale {
    text-align: center;
    margin-top: 25px;
    font-size: 17px;

}

.star {
    position: absolute;
    left: 710px;
    top: -50px;

}



.movie-list {
     background-color: rgb(0, 0, 9);
     height: 600px;
     overflow: auto;
     display: flex;
     flex-direction: row;
     flex-wrap: wrap-reverse;
     flex-direction: row-reverse;
   
     padding: 10px;
     padding-right: 35px;
     
}

.movie {
     background-color: rgb(16, 23, 48);
     width: 175px;
     height: 278px;
     text-align: center;
     padding: 4px;
     margin: 6px;
     margin-right: 10px;
     border-width: 3px;
     border-style: solid;
    border-color: rgb(5, 19, 39);
    
}

.movie img {
    border-width: 2px;
     border-style: solid;
    border-color: rgb(191, 194, 222);
}

.movie p {
    padding: 2px;
}

.rating {
    font-weight: bolder;
    font-size: 20px;
    color: rgb(106, 142, 208);
    margin-top: 6px;
    text-shadow: 0 0 3px rgba(147, 212, 253, 0.631);
}
