/* 
7-26-23 
*/

/* Actual colors */
:root
{
    --bg-color: #ffdda288;       
    --accent-one: #ffce7aad;
    --accent-two: #ffe3b2;
    --accent-three: black;
    --accent-four: #B58900;
    color: black;
}

/*  root:
 {
    --bg-color: #FBD1BD;
    --accent-one: #ffc391;
    --accent-two: #fcddcf;
    --accent-three: #000000;
    --accent-four: #fae1b5;
    color: black;
    
} */


/* Purple colors */
/* :root
{
    --bg-color: #87798E;
    --accent-one: #574263;
    --accent-two: #6E5C78;
    --accent-three: #A49CA8;
    --accent-four: #D3D0D5;
    color: white;
    
} */

/* Pink colors */
/* :root
{
    --bg-color: #AE93A1;
    --accent-one: #794E64;
    --accent-two: #926E81;
    --accent-three: #CEBDC6;
    --accent-four: #E8E2E5;
    color: white;
} */

.banner
{
    position: absolute;
    background: var(--accent-one);
    border-bottom: 2px solid black;
    top: 0;
    left: 0;
    width: 100%;
}

.banner_text
{
    padding-left: 3%;
    padding-right: 3%;
}

.main_page
{
    padding-top: 230px;
    padding-left: 2%;
    padding-right: 2%;

}

.category_box
{
    padding-left: 10px;
    padding-right: 20px;
    margin-bottom: 2%;
    border: 2px solid black;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

    background: var(--accent-two); /* #fcddcf*/;

    white-space: pre-line;
    display: flex;
    align-items: center;
}

.category_box_text
{
    padding-right: 1%;
    padding-left: 1%;

    margin-bottom: 0px;
}

.category_box_button
{
    margin-top: 0px;
    margin-bottom: 0px;
    display: flex;
}

.image
{
    max-width: 100%;
    max-height: 100%;
}

.thumbnail
{
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    width: 300px;
    height: 300px;
}

h2
{
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0px;
    font-size: 180%;
}

body 
{
    background: var(--bg-color);
    font-family: 'Courier New', Courier, monospace;
    /* font-family: Georgia, monospace; */
    font-size: 180%;

    line-height: 1.3;
}

p 
{

  margin-top: 5px;
  margin-bottom: 1px;
  align-items: center;
  white-space: pre-line;


}

button 
{
    background-color: var(--accent-one);
    border: 3px solid var(--accent-three);
    padding: 15px;
    margin-right: 30px;
    margin-bottom: 3%;
    text-align: center;
    font-family: Georgia, monospace;
    font-size: 30px;
    color: black;

    transition-duration: 0.4s;
}
  
button:hover 
{
    background-color: var(--accent-four);
    color: black;
}