* {
    margin: 0;
    padding: 0;
   font-family: Arial, Helvetica, sans-serif;
}

body {
    background-image: url("./imgs/Notflix-Background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    height: 100vh;
    width: 100vw;
}

.box_wrapper {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notflix_box {
    width: 500px;
    height: auto;
}


.kinofinder_content {
    display: flex;
    justify-content: center;
    align-items:start;
    background-color: white;
    opacity: .7;
    min-height: 100vh;
    padding: 3rem 2rem;
}


footer ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    bottom: 0;
    padding: 3rem;
    font-size: larger;
}

footer li {
    list-style-type: none;
    height: 3rem;
}

a {
    text-decoration: none;
    color: white;
}

.wrapper {
    color: white;
    line-height: 1.5;
    display: block;
    text-align: left;
    padding: 3rem;
}

.wrapper p {
    margin: 2rem 0 2rem 0;
}

footer a:hover {
    color: red;
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
        background-color: black;
    }

    .box_wrapper {
       align-items:start;
       padding-top: 1.5rem;
    }
    .notflix_box {
        width: 300px;
        height: auto;
    }

}


