/* 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");
}

.flex-container {
    padding: 20px;

    display:flex;
    align-items: center;
    flex-direction: column;
   
}

header {
    display: flex;
    justify-content: center;

    width: 100%; 
}

h1 {
    color: rgb(222, 225, 240);
    font-size: 50px;
}

h3 a {
    position: relative;
    left: 135px;
    color: rgb(146, 168, 204);
    text-decoration: underline;
}

a:hover {
   
     text-shadow: 0 0 5px rgb(227, 236, 241);
}


nav {
    display: flex;
    position: relative;
    left: 20px;
}

.leftarrow {
    position: relative;
    top: 13px;
}

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

.rightarrow {
    transform: rotate(180deg);
    position: relative;
    bottom: 16px;
}

.backarrow {
     transform: rotate(270deg);
     position: relative;
     bottom: px;
     left: 10px;
}


.graphics-box {
    background-color: rgb(0, 0, 0);
    width: 1050px;
    height: auto;
    position: relative;
    top: 20px;
    padding: 10px;

    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;

       border: 15px solid transparent;
    border-image: url("../images/darkstone-background-2.jpg") 200 round;
    border-image-outset: 5px;
}

.graphics-box > * {
    margin: 5px;
}