body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100%;
}

html {
    min-height: 100%;
}
img {
    object-fit: cover;
    border-radius: 8px;
}
.accordion {
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}
.active, .accordion:hover {
    background-color: #f2f2f2;
}
.bottombar {
    background: linear-gradient(45deg,white, grey);
    display: flex;
    position: fixed;
    bottom: 0;
    min-height: 50px;
    max-height: 150px;
    justify-content: center;
    align-items: center;
    width: 100%;

}
.collapsible {
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: larger;
}
.container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown {
    font-family: inherit;
    position: relative;
    display: inline-block;
}
.dropbtn { 

    background: none;
    color: #006666;
    padding: 15px;
    font-size: 24px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}
.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    color: #006666;
    min-width: 200px;
    box-shadow: 5px gray;
    z-index: 1;
}
.dropdown-content a {
    text-decoration: none;
    color: #006666;
    display: block;
}
.dropdown-content a:hover {
    background-color: #006666;
    color: white;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .dropbtn {
    background-color: #006666;
    color: white;
}


.flex-container {
    display: flex;
    flex-direction: row;
    flex-basis: 30%;
    flex-wrap: wrap;
    height: 100%;
    align-content: center;
}

.flex-container img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    padding: 10px;
    
}
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 5vw);
    grid-gap: 15px;
    
}

.navbar a:hover{
    background-color: inherit;
    color: white;
    display: block;
}
.navbar {
    display: block;
    float: left;
    font-family: inherit;
    background-color: #white;
    overflow: hidden;

}
.navbar a {
    float: left;
    cursor: pointer;
    color: #006666;
    text-decoration: none;
    font-size: 24;
    padding-right: 25px;
    font-size: 24px;

}
.navbar a:hover {    
    background-color: #006666;
    color: white;
    display: block;
}
.navbar a.active {
    background-color: blue;
    color: red;
}
.panel {
    padding: 0 18px;
    background-color: linear-gradient(45deg,white, grey);
    display: none;
    overflow: hidden;
}
.shrink {
    display: none;
    overflow: hidden;
    padding: 0 20px;
}
.text {
    justify-content: center;
    padding-left: 20px;
}
.text h1 {
    font-size: xx-large;
}
.image {
    flex-basis: 40%;
}
.submission {
    flex-direction: column;
    font-size: xx-large;
    
}
.submission input {
    background: inherit;
    border: 0 0 0 1;
    padding: 0;
    margin: 0;
    
   
    
}
.submission:focus {
    background: white;
}
.submission label {
    font-weight: bold;
    text-align: right;
    text-decoration: underline;
    border: 0;
    padding: 0;
}

