@font-face{
    font-family: Marks;
    src: url('/assets/fonts/Marks.otf');
}

@font-face{
    font-family: Marks_bold;
    src: url('/assets/fonts/Marks_bold.otf');
}


main > .container {
    padding: 70px 15px 20px;
}

.footer {
    background-color: #f5f5f5;
    font-size: .9em;
    height: 60px;
}

.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
    padding-top: 7px;
    color: rgba(255, 255, 255, 0.5);
}

@media(max-width:767px) {
    .nav li > form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 0;
    }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}

.nav > li > form > button.logout:focus {
    outline: none;
}

.form-group {
    margin-bottom: 1rem;
}
/*
header{
    position: sticky;
    top: 0;
}*/
.navbar, .tagline, #brand{
    background: #103d17 !important;   
}

#logo{
    border-radius: 0.5em;   
    transition: all 0.5s;
    animation:  shadow 2s infinite linear;
   
}

#link{
    z-index: 1030;
}

#logo:hover{
    
    transform: translateX(20%) translateY(20%) scale(1.5);
    transition: all 0.5s;
}

@keyframes shadow {

    0%{
        box-shadow: 0px 0 0px red;
    }
    50%{
        box-shadow: 0 0px 30px red;
    }


    100%{
        box-shadow: 0px 0 0px red;
    }
    
}

.tagline{
    text-align: center;
    color: white;
    font-family: Marks;
    font-size: 1.5em;
    margin: 0;
   
}
   
.navbar-nav{
    width: 100%;
    display: flex;
    justify-content: space-around;
  
}

.nav-link{
    font-family: Marks_bold;
    font-size: 2em;   
    transition: all 0.5s;
    text-decoration: none;
    color: #ffffff;
}

.nav-link:hover{
    transform: scale(1.1);
    transition: all 0.5s;
    text-decoration: underline;    
}

.dropdown-toggle:hover~.dropdown-menu, .dropdown-menu:hover{
    display: block;
}

.dropdown-menu{
    background: #103d17;
}

.dropdown-item{
color: white;
font-family: Marks;
font-weight: bolder;
}


main{
background: url(/assets/images/background.jpg);
min-height: 75vh;
}

#main{
   
    margin-top: 2em;
    margin-bottom: 2em;
    border-radius: 2em;
    border: rgb(91 163 127) solid 5px;
    
}



#serchText{
   /*background: url(/assets/images/board.png);*/
   background: #103d17;
    outline: none;
    border: white solid 1px;
    color: white;
    font-family: Marks;   
  font-weight: bold;
  text-align: center;
  opacity: 1;

}

#serchText::placeholder{
    color: rgb(182, 179, 179);
    font-family: Marks;   
  font-weight: bold;
  text-align: center;
  opacity: 1;

}