*{
    margin:0;
    padding:0;
}

body{
    background-color:cornflowerBlue;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    text-align: center;
}

h1{
    background-color:black;
    color:white;
    text-align: center;
    width:100%;
    height:80px;
    position:fixed;
    top:0;
    z-index: 1;
}

.container{
    position:relative;
    top:100px;
    margin-top: 30px;
    overflow: visible;
    height:900px;
}

div p{
    font-size: 30px;
    color: white;
    min-width: 350px;
    max-width: 1400px;
}

div img{
    width:300px;
    height:250px;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.place{
    border:3px solid black;
    display:inline-block;
    width: 350px;
    height: 300px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.movies{
    border:3px solid black;
    display:inline-block;
    width: 350px;
    height: 300px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.series{
    border:3px solid black;
    display:inline-block;
    width: 350px;
    height: 300px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.books{
    border:3px solid black;
    display:inline-block;
    width: 350px;
    height: 300px;
    margin-top: 30px;
    margin-bottom: 20px;
}

div span{
    display:block;
    margin-bottom: 5px;
}

footer{
    background-color:black;
    color:white;
    position:fixed;
    bottom:0;
    width:100%;
    height:50px;
    text-align: center;
    z-index: 1;
}


.movies:hover{
    cursor:pointer;
    background-color: black;
}

.series:hover{
    cursor:pointer;
    background-color: rgb(245, 126, 126);
}

.books:hover{
    cursor:pointer;
    background-color: rgb(245, 193, 95);
}

.place:hover{
    cursor:pointer;
    background-color: rgb(7, 255, 7);
}

a{
    text-decoration: none;
    color: black;
    font-size: large;
}