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


body {
    background-color: black;
    background-image: url("../images/dark-stones.jpg");

}

p {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

a {
    color: rgb(137, 179, 208);
}

a:hover {
    color: rgb(175, 194, 202);
}

.flex-container {

    display: flex;
    box-sizing: border-box;
    justify-content: flex-start;
   
    min-width: 1000px;
  
    position: relative; 
}

nav {

    
    background-image: url("../images/nav-column.png");
    background-size: contain;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    align-items: center;
    
    margin: 0 auto;
    
    padding-top: 100px;

    line-height: 38px;
    
    position:relative;
    z-index: 2;
    height: 1100px;
    min-width: 260px;
    
    top: 98px;

    bottom: 0;

    left: 8%;

    filter: saturate(70%) brightness(70%);
    
}


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


.darkbox {
    background-color: rgb(0, 0, 0);
    width: 700px;
    height: 600px;
    position: relative;
    left: 3%;
    top: 205px;
    display: flex;
    flex-direction: column;
    align-items: center;

    border: 35px solid transparent;
    border-image: url("../images/darkstone-background-2.jpg") 300 ;
    border-image-outset: 25px;

    text-align: center;
}

.intro {
    position: relative;
    top: 30px;
    width: 620px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 24px;
    color: rgb(84, 141, 199);
}

.desc {
    width: 555px;
    color: rgb(106, 165, 238);
    text-shadow: 0 0 10px rgb(39, 131, 243);
    font-size: 20px;
}

.note {
    font-size: 18px;
}

.arrows {
    width: 210px;
    height: 50px;
    position: relative;
    top: 200px;
    display: flex;
    left: -60px;
}

.uparrow {
    transform: rotate(90deg);
}

.rightarrow {
    transform: rotate(180deg);
}

#candle {
    position:absolute; 
    left: 284px;
    top: 440px;

}


.nav-right {
  
    width: 300px;

   
    left: -15px;
    padding-top: 180px;
   
    
}

