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

body {
    background-color: rgb(19, 20, 27);
}

.flexbox {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 1000px;
    min-width: 800px;
}

.candlenav {
    display: flex;
    position: relative;
}

img {
    position: relative;
    left: -20px;
    top: 10px;
}

nav {
    background-color: cornflowerblue;
    width: 700px;
    height: 90px;

    display: flex;
   justify-content: center;
   align-items: center;

    background-color: rgb(45, 67, 97);
    background-image: url("../images/vertical-panel-background.png");
    background-position: center;

     border: 5px ridge rgb(32, 33, 34);

     position: relative;
     top: 25px; 
     left: 10px; 
}

nav a {
    padding: 20px;
    margin-left: 10px;
    margin-right: 10px; 

   
}

.buttons a {
    background-color: rgb(41, 43, 48);
    height: 70px;
    width: 140px;
    text-align: center;
     border: 2px outset rgb(150, 165, 180);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 800;
    color: rgb(145, 160, 175);
    text-decoration: none;

    background-image: url(../images/vertical-wood-background.webp);
    background-size: cover;

}

.buttons a:hover {
    color: rgb(233, 229, 169);
}


main {
    background-color: rgb(96, 97, 105);
    border-width: 10px;
    border-color: rgb(0, 0, 0);
    border-style: ridge;
    width: 800px;
    height: auto;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    padding-bottom: 10px;
   
}

section {
    position: relative;

}

h2 {
    padding: 5px;
    padding-top: 30px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

hr {
   border: none;
   height: 3px;
   background-color: rgb(165, 144, 115);
}

article {
    height: auto;
    
}

ul {
    padding-top: 10px;
    list-style-type: none;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

li {
    padding-top: 5px;
}

a {
    color: rgb(229, 231, 193);
}

a:hover {
    color: aliceblue;
}

section a:visited {
    color: rgb(35, 35, 35);
}

details {
    padding-top: 9px;
    padding-bottom: 20px;
}