@media (max-width: 800px) {
  .flex-container {
    flex-direction: column;
  }
}
img {
    max-width: 100%;
    height: auto;
}
span {
    color: yellow;
}
div img {
    border: none;
    margin: 0;
    padding: 0;
}

.bottom {
    position: fixed;
}

.dropdown {
    background-color: inherit;
    display: flex;
}
.card {
    display: flex;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    max-width: 200px;
    margin: auto;
    text-align: center;
    width: 25%;
    flex-basis: 25%;
    
}
.card button {
    border: none;
    outline: 0;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: larger;
}
.card button:hover {
    opacity: 0.7;
}
.flex_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;

    flex-basis: auto;
    align-content: center;
    gap: 10px;
    border: solid red 1px;

}
.flex_body {
    display: inline-block; 
    border: dotted blue 1px;
}
.flex_head {
    display: inline;
    width: 100%;
    border: dashed green 1px;
}
.flex_foot {
    display: inline;
    
}
.flex_text {
    display: inline;
    text-align: center;
    border: none;
    align-content: center;
}
.flex_image {
    display: flex;
    flex-wrap: nowrap;
    flex-basis: 49%;
    height: auto;
    object-fit: cover;
    vertical-align: bottom;
}
.flex50 {
    display: flex;
    flex-basis: 50%;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;
    
}
.flex25 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    flex-basis: 25%;
    height: auto;
    align-items:end;
    border: solid orange 3px;
}
.flex25 img {
    border: solid green 2px;
    width: 25%;
}

.desc {
    padding: 10px;
    text-align: center;
}

.dropdownbtn {
    background-color: inherit;
    color: white;
    border: none;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: inherit;
    min-width: 200px;
    z-index: 1;
}
.dropdown-content a {
    display: block;
    color: inherit;
    background-color: white;
}
.dropdown-content a:hover {
    background-color: pink;
}
.dropdown:hover .dropdown-content {
    display: block;
}

.foot {
    position: fixed; 
    justify-content: center;
    justify-items: center;
    background-image: linear-gradient(45deg, silver,white);
}

.form_table {
    background-color: lightcoral;
    align-content: center;
}
.form_table tr {
    align-items: center;
    text-align: right;
}
.form_table label {
    text-align: right;
}
.gallery {
    margin: 5px;
    border: 1px solid black;
    width: 250px;
}
.gallery:hover {
    border: 2px solid red;
}
.gallery img {
    max-width: 80%;
    border: 5px;
    margin: 5%;
    height: auto;
    align-items: flex-start;
   
}
.gallery p {
    margin: 1%;
    align-content: center;
}
.head {
   justify-content: center;
   justify-items: center;
    background-color: #006666;
    color: white;
    text-align: center;  
    overflow: hidden;
}
.login {
    justify-content: center;
    background-image: linear-gradient(45deg, white,silver);
}
.left {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}
.pic {
    display: flex;
}
.mid {
    background-color: pink;
    
}
.navbar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    overflow: hidden;
    justify-content: center;
    background-image: linear-gradient(45deg, white, silver) ;
    height: 50px;
    width: 100%;
}
.navbar a{
    color: #006666;
    background-color: inherit;
    text-align: center;
    padding: 5px;
    text-decoration: none;
}
.navbar a:hover {
    background-color: white;
    color: #006666;
}
.page {
    background-color: lavender;
   
}
.page-content {
    display: none;
    color: inherit;
    background-color: inherit;
    height: 100%;
    width: 100%;
    overflow: auto;
}
.right {
   display: flex;
    flex-flow: row wrap;
    justify-content: center;
}
.tablink {
    float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 17px;
  width: 25%;
}
.tabcontent {
  color: white;
  display: none;
  padding: 100px 20px;
  height: 100%;
}

.title {
    display: block;
    justify-content: center;
}
.top {
    background: #006666;
}