* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
#header-block {
    background-color: rgb(77, 129, 252);
    height: 75px;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 2;
}
.container {
    max-width: 1200px;
    width: 100%;
	padding: 0px 15px;
}
#header-container {
    display: flex;
    justify-content: space-between;
    height: 100%;
}
#header-container > div{
    min-height: 75px;
    justify-content: center;
    align-items: center;
    display: flex;
}
img{
    max-width: 100%;
    max-height: 100%;
}
#logo{
    padding: 10px;
    box-sizing: border-box;
    max-height: 75px;
}
nav{
    height: 100%;
}
#navigation{
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#navigation a{
    padding: 15px 10px;
    align-items: center;
    display: flex;
    cursor: pointer;
    color: rgb(255, 255, 255);
    position: relative;
    text-transform: uppercase;
    transition: background-color .3s;
    white-space: nowrap;
}
#navigation a:hover {
    background-color: rgb(112, 154, 252);
}
#navigation a:active {
    background-color: rgb(36, 102, 255);
}
.fancy-button {
    background-color: rgb(65, 172, 240);
    animation: .4s jump ease infinite alternate ;
    overflow: hidden;
}
@keyframes jump{
    0% {
        transform: scale(1);
        box-shadow: 0 1px 2px rgba(0,0,0,.15);
      }
      100% {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(0,0,0,.1);
      }
}
#background-image {
    background-attachment: fixed;
    height: 600px;
    background-size: cover;
}
#background-tint {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
h2 {
    color: #FFF;
    padding: 75px 0px 15px;
    font-size: 64px;
    text-shadow: 0px 0px 15px #000;
}
#about {
    display: flex;
    justify-content: center;
    background: url("resources/background.jpg") no-repeat bottom center;
}
#about-block {
    display: flex;
    padding: 20px 0px ;
}
#about-block > div{
    padding: 20px;
    box-sizing: border-box;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#offer, #gallery, #contact {
    display: flex;
    justify-content: center;
}
#offer-block, #gallery-block {
    padding: 50px 0;
}
#offer-block > h3 {
    padding: 15px 0;
}
#offer-block ul {
    padding-left: 25px;
}
#offer-block li {
    padding: 5px 0px;
    list-style: initial;
}
#contact-container {
    padding: 50px 0px;
}
#contact-container > p {
    text-align: center;
    padding: 15px 0px;
    font-size: 17px;
}
#map {
    background-color:lightyellow;
    max-width: 100%;
    height: 400px;
    margin-bottom: 30px;
}
#gallery-block {
    column-count: 2;
}
#gallery-block > div {
    padding: 20px;
    text-align: center;
}
#gallery-block > div > img {
    max-width: 100%;
    max-height: 400px;
}
.image-0 {
    background-image: url("resources/galery/IMG_0871.JPG");
    background-position: center;
}
.image-1 {
    background-image: url("resources/galery/IMG_0875.JPG");
    background-position: center;
}
.image-2 {
    background-image: url("resources/galery/IMG_0885.JPG");
    background-position: center;
}
.image-3 {
    background-image: url("resources/galery/IMG_0890.JPG");
    background-position: center;
}
@media all and (max-width: 880px)
{
	#header-block {
        height: auto;
	}
	#header-container {
		flex-direction: column;
	}
}
@media all and (max-width:500px)
{
	#about-block {
        flex-direction: column;
    }
    #about-block > div{
        width: 100%;
    }
    #galleryButton{
        display: none !important;
    }
}
