/* CSS Master File */

/*Main HTML styles*/
html {
    background-color: rgb(61, 214, 74);
}

h1 {
    max-width: 70%;
}

/*Paragraph control for main text on each page*/
@media (min-width: 768px) {
    .horizontal_parent {
        display: flex;
        flex: auto;
        padding: 2px;
        margin: 10px;
    }
}

.horizontal_text {
    flex: 1 1 300px;
    flex-wrap: wrap;
    min-width: 250px;
    max-width: 800px;
    padding: 2px;
    margin: 10px;
}

/*Dropdown Nav Menu*/
.dropdown {
    position: relative;
    display: grid;
    min-height: 25px;
    width: 97.5vw;
}

.dropbtn {
    background-color: rgb(0, 255, 255);
    color: rgb(255, 255, 255);
    padding: 5px;
    font-size: 16px;
    border: 1px;
    border-color: rgb(0, 0, 0);
    position: relative;
    justify-self: end;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
}

.dropdown-content {
    visibility: hidden;
    background-color: rgba(0, 255, 255, .9);
    position: absolute;
    top: 65px;
    text-align: justify;
    right: 50px;
    min-width: 200px;
    border-radius: 20%;
    z-index: 999;
    
}

.dropdown:hover .dropdown-content {
    visibility: visible;
}

/*End Nav Menu*/

/*Table settings for gallery*/
table {
    border: 3px solid rgb(0, 0, 0);
    border-collapse: collapse;
    border-color: rgb(255, 0, 0);
    margin: 20px auto;


}

th,
td {
    border: 1px solid rgb(0, 0, 0);
    border-color: rgb(255, 0, 0);
    line-height: 3;
}

button {
    vertical-align: middle;
}

td {
    min-width: 288px;
    min-height: 288px;
    max-width: 288px;
    min-width: 288px;
    width: 288px;
    height: 288px;
    text-align: center;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255)
}

th {
    background-color: rgb(0, 255, 255);
    text-align: center;
    position: relative;

}

img {
    max-width: 100%;
    height: auto;
    max-height: 288px;

}

/*End gallery settings*/


/*vote and reset button settings */
.vote {
    float: right;
    position: absolute;
    right: 2px;
    top: 0px;

}

/* Hiding this so randoms can't reset the vote count*/
/* I can comment this on and off to reset them as needed*/
.hidden {
    display: none;
}

/*End vote buttons */

/*Contact me form settings*/
.form_border {
    border: 2px solid rgb(0, 0, 0);
    box-shadow: 0 0 0 3px rgb(255, 0, 0), 0 0 0 5px rgb(0, 0, 0);
    border-radius: 10px;
    padding: 2px;
    display: inline-block;
    margin-bottom: 11px;
    margin-top: 13px;
    background-color: rgb(0, 255, 255);
}

.contact_border {
    border: 2px solid rgb(0, 0, 0);
    box-shadow: 0 0 0 3px rgb(255, 0, 0), 0 0 0 5px rgb(0, 0, 0);
    border-radius: 10px;
    background-color: rgb(0, 255, 255);
}

.button_border {
    border: 2px solid rgb(0, 0, 0);
    box-shadow: 0 0 0 3px rgb(255, 0, 0), 0 0 0 5px rgb(0, 0, 0);
    border-radius: 10px;
    padding: 3px;
    display: inline-block;
    background-color: rgb(0, 255, 255);
}