* {
    box-sizing: border-box;
}

body{
    margin: 0;
    height: 100vh;
    width: 100vw;
    position: relative;
    background-color: rgb(36, 36, 36);
    background-image: url(backgroundswirl.png);
    background-size: 1800px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    justify-content: center;
    overflow: hidden;
    /* align-items: center; */
}

p{
    color: aliceblue;
}

.closed{
    max-width: 400px;
    max-height: 400px;
    position: absolute;
    top: 10%;
    left: 20%;
    cursor: pointer;
}

.draggable{
    cursor: grab;
}

.opened{
    max-width: 500px;
    max-height: 500px;
    position: absolute;
    top: 10%;
    left: 15%;
    opacity: 0;
    cursor: grab;
}

.star{
    max-width: 100px;
    max-height: 100px;
    position: absolute;
    top: 5%;
    left: 5%;
    opacity: 30%;
    cursor: grab;
}

.star2{
    max-width: 200px;
    max-height: 200px;
    position: absolute;
    top: 70%;
    left: 30%;
    opacity: 30%;
    cursor: grab;
}

.star3{
    max-width: 300px;
    max-height: 300px;
    position: absolute;
    bottom: 60%;
    left: 70%;
    opacity: 30%;
    cursor: grab;
}

.words{
    width: 450px;
    text-align: center;
    position: absolute;
    top: 50%;
    right: 20%;
    /* transform: translate(70%, -30%); */
}

.mla{
    position: fixed;
    bottom: 5px;
}
