@import url(fonts.css);
#banner{
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0; 
    background-color: white;
    z-index: 1;
}
#topBar{
    min-width: 800px;
    max-width: 1392px;
    z-index: 2;
}
#backgroundColor{
    height: 45px;
    margin-top: 79px;
    position: fixed;
    width: 100%;
    z-index: 1;
    background: linear-gradient(#72e8ff, #64ca93);
}

#info{
    padding-top: 15px;
    padding-bottom: 10px;
    

}
#address{
    float: right;
    padding-right: 12px;
    color: #5f5f5f;
    font-style: italic;
    
}
#logo{
    padding-left: 10px;
}
#navbar{
    width: 100%;
}

#navItems{
    overflow: hidden;
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
    background: linear-gradient(#72e8ff, #64ca93);
}

.navItem{
    float: left;
    padding: 14px 11px;
    text-decoration: none;
    text-align: center;
}

.navItem a{
    text-decoration: none;
    color: black;
}

.navItem:hover {
    text-decoration: underline;
    animation: colorShift forwards;
    animation-duration: 0.5s;
}

@keyframes colorShift {
    from {background: linear-gradient(#72e8ff, #64ca93)}
    to {background-color: #64ca93}
}

#content {
    margin-top: 139px;
    min-width: 800px;
    max-width: 1301px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    background-color: white;
}

footer {
    background-color: #193c72;
    color: white;
    padding-top: 12px;
    padding-bottom: 5px;
    width: 100%;

}
#legal {
    color: #d2d2d2;
    text-align: center
}

body{
    margin: 0;
    
}


#facebook{
    width: 6%;
}

.picture {
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s;
    background-color: white;
}
.picture:hover {
    transform: scale(1.2);
}

* {
    font-family: "sansation", sans-serif;
}

