/*My .css for class specific styles and general styling on all pages*/

/*Head and body-------------------------------------------------------------------------------------------------------*/
body, head{
    background-color: rgb(211, 236, 255);
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}


/*Navbar things-------------------------------------------------------------------------------------------------------*/
nav{
    display: block;
    background: linear-gradient(to top   , rgba(255,0,0,0), rgba(115, 125, 255, 1));
    color: black;
    font-size: 12pt;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px 8px;
    border: 1px solid black;
    border-radius: 8px;
}

nav a{
    text-decoration: none;
    color: black;
    background: transparent;
    padding: 10px 8px;
    text-shadow: 2px 2px 2px grey;
    text-align: center;
}

nav a:hover{
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(4, 99, 7, 1));
    color: rgb(255, 236, 161);
    padding: 10px 8px;
    border-radius: 8px;
}

/*Headers-------------------------------------------------------------------------------------------------------------*/
h1,h2,h3{
    background-color: rgb(115, 125, 255);
    color: black;
    padding: 3px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-shadow: 2px 2px 2px grey;
    border-radius: 8px;
    border: 1px solid black;
}

#banner1:hover{
    color: rgb(4, 99, 7);
    transition: 3s;
}

#banner2:hover{
    color: rgb(0, 0, 255);
    transition: 3s;
}

#banner3:hover{
    color: rgb(187, 30, 16);
    transition: 3s;
}

#banner4:hover{
    color: rgb(246, 166, 36);
    transition: 3s;
}
/*Footer--------------------------------------------------------------------------------------------------------------*/
footer{
    background-color: transparent;
    font-size: small;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    vertical-align: center;
    padding-top: 5px;
}

/*pageShortcut Formatting---------------------------------------------------------------------------------------------*/
.pageShortcut{
    text-decoration: underline;
}

.pageShortcut a{
    color: green;
    padding-left: 10px;
    padding-right: 10px;
}

.pageShortcut a:hover{
    color: yellow;
    background-color: rgb(115, 125, 255);
    border-radius: 8px;
}

.pageShortcut a:active{
    color: red;
}

.pageShortcut:visited{
    color: blue;
}

/*Fragment Anchor-----------------------------------------------------------------------------------------------------*/
.fragmentAnchor{
    all:inherit;
}

/*Summary Formatting---------------------------------------------------------------------------------------------------*/
blockquote{
    border: 1px solid black;
    border-radius: 8px;
    padding: 10px;
}

#summary1:hover{
    color: rgb(4, 99, 7);
    transition: 3s;
}

#summary2:hover{
    color: rgb(0, 0, 255);
    transition: 3s;
}

#summary3:hover{
    color: rgb(187, 30, 16);
    transition: 3s;
}

#summary4:hover {
    color: rgb(246, 166, 36);
    transition: 3s;
}

/*Lists Formatting----------------------------------------------------------------------------------------------------*/
li{
    padding: 2px;
}



ol:hover{
    color: rgb(255, 236, 161);
    transition-delay: 1s;
}

ul:hover{
    color: rgb(255, 236, 161);
    transition-delay: 1s;
}



.customList{
    list-style-image: url(../Imported_decorationAndVideoAudio/radio-selected.png);
}

.customList li:hover{
    list-style-image: url(../Imported_decorationAndVideoAudio/radio-selected-hover.png);
}

/*Table and Image Formatting------------------------------------------------------------------------------------------*/
table{
    margin: auto;
    text-align: center;
}

tr{
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

th{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

td{
    font-style: italic;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

.leftTitleColumn{
    font-family:  Arial, Helvetica, sans-serif;
    font-weight: bold;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    width: 100px;
    font-size: 16px;
}

figure{
    height: auto;
    border-radius: 10px;
}

/*Testing to see if I can zoom into the images. It does not zoom well without some animation, and it goes off the page*/
/*
figure:hover{
    transition-delay: 3s;
    zoom:150%;
}
*/

figcaption{
    font-size: small;
}

#images figure{
    border: 1px solid black;
    border-radius: 8px;
}

/*Video/audio for index-----------------------------------------------------------------------------------------------*/
video{
    border: 1px solid black;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    margin: auto;

}

#Voice_memo_title{
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: underline;
    background-color: rgb(211, 236, 255);
    margin-top: 19px;
    margin-bottom: auto;
}

#Voice_memo audio{
    text-align: center;
}
/*Form Formatting-----------------------------------------------------------------------------------------------------*/
form{
    border: 1px solid black;
    border-radius: 8px;
    display: block;
    margin: auto;
    padding: 10px;
    text-align: center;
}

.feedbackTitle{
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: underline;
    background-color: rgb(211, 236, 255);
}

.buttonBox{
    margin-top: 10px;
    margin-bottom: 10px;
}

label, input{
    margin-top: 2px;
    margin-bottom: 2px;
}

input{
    background-color: rgb(211, 236, 255);
}

textarea{
    background-color: rgb(211, 236, 255);
}