/* clears default browser css*/
* {
  box-sizing: border-box; /* Makes sizing more predictable */
  margin: 0;
  padding: 0;
}

body {
    background-image: url(../images/garden-background-3.png);
    background-size: 50%;
}


/* main text styles */

p {
    color: rgb(155, 190, 226);
}


nav {
    background-color: none;
    background-image: url("../images/nav-column.png");
    background-size: cover;
    background-repeat: no-repeat;
    filter: opacity(95%) contrast(95%) brightness(90%) grayscale(15%);

    display: flex;
    flex-direction: column;

    float: left;

    width: 260px;
    height: 900px;
    margin-left: 10%;
    margin-right: -65px;
    padding-left: 73px;
    padding-top: 99px;
    margin-top: 100px;

    line-height: 38px;
}

.nav-right {
    float: left;
    margin-left: -65px;
}

.welcome {
    background-color: rgb(5, 13, 21);
    
    
    border: 50px solid rgb(13, 22, 70);
    border-image: url("../images/blue-flower-border-removebg-preview.png") 100 round;
    border-image-outset: 15px;

    box-shadow: 0px 0px 30px 1px #07041988; 

    height: 650px;
    width: 800px;
    float: left;
    margin-top: 155px;
}

.text {
    background-color: rgb(8, 21, 51);
    width: 500px;
    height: 200px;
    margin-left: 100px;
    margin-top: 50px;

    text-align: center;
    padding: 10px;

    border-width: 8px;
    border-style: groove;
    border-color: rgba(33, 74, 176, 0.576);
}

.graveyard-border {
    margin-top: 10px;
    margin-left: 170px;
    width: 350px;

    border: 50px solid rgba(23, 36, 109, 0);
    border-image: url("../images/blue-filigree-frame-border_53876-115604-removebg-preview.png") 100 round;
}

    .graveyard {
        filter: hue-rotate(330deg) contrast(150%) saturate(5);
        margin-bottom: -5px;
    }

.moon-ring {
     position: absolute;
     background-image: url("../images/spinning-crescent.gif");
     background-repeat: no-repeat;
     background-position: center;

     filter: hue-rotate(350deg) grayscale(30%);

     margin-left: 500px;
     margin-top: -60px;

     z-index: 1 
}

.candle {
    position: absolute;
    margin-top: 215px;
    margin-left: 50px;

    filter: hue-rotate(160deg);

    z-index: 1

}

.unicorn {
    position: absolute;
    margin-top: -280px;
    margin-left: 65px;

    filter: hue-rotate(360deg)
}



nav img:hover {
    background-color:rgb(121, 174, 220);
    box-shadow: 0px 0px 8px 3px rgba(0, 30, 138, 0.867);
}

