* {
    box-sizing: border-box;
}

body {
    background-color: #000042;
    color: #fc0;
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
}

.stars-container {
    z-index: -1;
    position: fixed;
}

/* https://codepen.io/fxm90/pen/yOBWVe */
.star {
    position: fixed;

    display: inline-block;
    width: 0;
    height: 0;

    margin-left: 0.9em;
    margin-right: 0.9em;
    margin-bottom: 1.2em;

    border-right: 0.3em solid transparent;
    border-bottom: 0.7em solid #970;
    border-left: 0.3em solid transparent;

    /* Controlls the size of the stars. */
    font-size: 16px;

    &:before,
    &:after {
        content: "";

        display: block;
        width: 0;
        height: 0;

        position: absolute;
        top: 0.6em;
        left: -1em;

        border-right: 1em solid transparent;
        border-bottom: 0.7em solid #970;
        border-left: 1em solid transparent;

        transform: rotate(-35deg);
    }

    &:after {
        transform: rotate(35deg);
    }
}

.mikey {
    position: fixed;
    bottom: 0;
    right: 80px;
}

.container {
    background-color: #000000bb;
    padding: 33px 45px;
    margin: 0 auto;
    margin-top: 15%;
    width: fit-content;
    border-radius: 12px;
}

.quote {
    margin: 0px;
    text-align: center;
}
