body {
    background-color: pink;
}

* {
    margin: 0;
}

.wordart {
    font-family: Arial, sans-serif;
    font-size: 4em;
    font-weight: bold;
    margin-left: 375px;
    margin-top: -140px;
    position: absolute;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wordart.purple {
    transform: skew(0, -10deg) scale(1, 1.5);
}

.wordart.purple .text {
    letter-spacing: -0.01em;
    font-family: Impact;
    background: linear-gradient(to bottom, #4222be 0%, #a62cc1 73%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top h2 {
    text-align: justify;
    width: 700px;
    margin-top: 200px;
    margin-left: 375px;
    color: rgb(172, 27, 164);
}

.top img {
    position: absolute;
    margin-left: 375px;
    margin-top: 30px;
    width: 700px;
    height: 450px;
}

nav#menu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    position: fixed;
    text-align: center;
    top: 0px;
    bottom: 0px;
    background-color: rgb(231, 24, 169);
    background-image: url(/Gifs/snow.gif);
    border: rgb(219, 176, 248) 10px solid;
    width: 190px;
    padding: 20px;
}

nav#menu h1 {
    font-size: 28px;
    padding-top: 55px;
    color: lawngreen;
    z-index: 2;
    font-family: "Satisfy", cursive;
}

nav#menu img {
    height: 70px;
    padding-top: 90px;
    z-index: 2;
}

nav#menu li {
    padding: 2px;
    margin: 5px;
    color: rgb(247, 224, 241);
    font-family: "Satisfy", cursive;
    font-size: 16pt;
    text-align: center;
    border: 2px solid rgb(240, 164, 215);
}

nav#menu a {
    color: rgb(243, 239, 239);
    text-decoration: underline;
}

audio#music {
    display: block;
    position: fixed;
    margin-left: 70px;
    top: 650px;
    width: 100px;
}

.side {
    display: flex;
    flex-direction: column;
    list-style: none;
    position: fixed;
    top: 0px;
    bottom: 100%;
    margin-left: 1190px;
    width: 250px;
}

.side img {
    height: 260px;
    border: rgb(219, 176, 248) 7px solid;
}

.movies {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 480px;
}

.movies h1 {
    text-align: center;
    color: rgb(172, 27, 164);
}

.movies p {
    text-align: justify;
    width: 700px;
    font-size: 25px;
    font-weight: bolder;
    color: rgb(172, 27, 164);
}

.movies img {
    width: 700px;
    height: 300px;
}

.movies hr {
    border: 0;
    clear: both;
    display: block;
    width: 800px;
    background-color: rgb(94, 10, 52);
    height: 6px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .wordart {
        font-size: 2em;
        margin: 10px auto;
        position: static;
        text-align: center;
        margin-top: 30px;
    }

    .top h2 {
        width: 90%;
        margin: 20px auto;
        margin-top: 50px;
        text-align: center;
    }

    .top img {
        width: 100%;
        height: auto;
        position: static;
        align: center;
        margin: 20px auto;
    }

    nav#menu {
        position: relative;
        width: 300px;
        margin-top: 20px;
    }

    nav#menu ul {
        position: relative;
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%;
    }

    nav#menu li {
        flex: 1;
        width: 100%;
        margin: 5px 0;
    }

    .side {
        display: flex;
        flex-direction: column;
        list-style: none;
        position: relative;
        top: 0px;
        bottom: 100%;
        margin-left: 0px;
        width: 100%;
    }

    audio#music {
        position: static;
        margin: 20px auto;
        display: block;
    }

    .movies {
        margin-top: 20px;
        width: 90%;
    }

    .movies h1 {
        font-size: 1.5em;
    }

    .movies p {
        font-size: 18px;
    }

    .movies img {
        width: 100%;
        height: auto;
    }

    .movies hr {
        width: 100%;
    }
}
