*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-family: 'Verdana', cursive;
    text-align: center;
    color: #205c61;
}
.marckscript p{
    font-family: 'Marck Script';
}
header{
    background-color: #205c61;
    color: white;
}
.menuBackground{
    background-color: #205c61;
    width: 130px;
    height: 130px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    border-radius: 100%;
    transform: translate(50%, -50%);
    opacity: .5;
}
.hamburger{
    position: fixed;
    right: 10px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    min-height: 30px;
    background-color: transparent;
    border: none;
    z-index: 3;
   
}
.hamburger:focus{
    outline: transparent;
}
.hamburger__line{
    display: block;
    background-color: white;
    width: 100%;
    height: 4px;
    position: relative;
    border-radius: 5px;
}
.hamburger__line.rotated{
    background-color: transparent;
}
.hamburger__line::before,
.hamburger__line::after{
    content: ' ';
    display: block;
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    transition: all .3s linear;
}
.hamburger__line::before{
    transform: translateY(10px);
}
.hamburger__line::after{
    transform: translateY(-10px);
}
.hamburger__line.rotated::before{
    transform: rotate(45deg);
}
.hamburger__line.rotated::after{
    transform: rotate(-45deg);

}

.nav{
    background-color: #205c61;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 2;
    transform: translateY(-100%);
    transition: all .5s ease-in-out;
    
}
.visible{
    transform: translateY(0px);
}
nav>ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
nav>ul>li{
    list-style-type: none;
    padding: 5px;
    width: 90%;
    text-align: center;
    color: white;
}
nav>ul>li>a{
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.mainPhoto{
    position: relative;
    color: white;
    width: 100%;
    max-height: 100vh;
    overflow: hidden;
}
.mainPhoto img{
    width: 100%;
    height: auto;
}
.mainPhoto>h1{
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}
.mainPhoto>h1>p:first-child{
    color: inherit;
    position: absolute;
    top: 20px;
    left: 20px;
}
.mainPhoto>h1>p:last-child{
    color: inherit;
    position: absolute;
    bottom: 20px;
    right: 20px;
}
article{
    margin-bottom: 20px;
}
.offer{
    background-color: white;
    color: #205c61;
    text-align: center;
    padding: 20px;
}
.reservation{
    display: block;
    padding: 25px;
    color: red;
    font-size: 25px;
    animation: resize .6s infinite alternate;
}
@keyframes resize {
    from {
      color: rgb(255, 0, 0);
    }
  
    to {
      color: rgb(107, 0, 0);
    }
  }
.offer p{
    margin-top: 10px;
}
.attractions{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.attractions h2{
    padding: 20px;
}
.attractionItem{
    margin-bottom: 20px;
    
}
.attractionItem p{
    margin-top: 20px;
    margin-bottom: 10px;
}
.attractionItem i{
    font-size: 50px;
}
.gallery img{
    max-width: 100%;
    max-height: 100vh;
}
.priceList{
    padding: 20px;
}
.priceList h3{
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
}
.priceList p{
    text-align: center;
}
.contact__map{
    width: 100%;
    height: 100vh;
}
.contact__info{
    margin-top: 20px;
    margin-bottom: 20px;
}
form{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
input[type=text], input[type=email]{
    width: 300px;
    height: 30px;
    border: none;
    border-bottom: 1px solid #205c61;
    margin-bottom: 20px;
    transition: all 500ms ease-in-out;
}
input[type=text]:focus, input[type=email]:focus{
    outline: none;
}
button[type=submit]{
    background-color: #205c61;
    color: white;
    width: 300px;
    padding: 5px;
    letter-spacing: 2px;
}
.feedback h2{
    margin-top: 60px;
}
.feedback img{
    margin-bottom: 40px;
    max-width: 100%;
}
footer{
    background-color: #205c61;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}
footer p{
    color: white;
    padding: 10px;
}





@media (min-width: 576px) {
    *{
        font-size: 22px;
    }
    nav a{
        font-size: 18px;
    }
    h2, h1{
        font-size: 25px;
    }
    .attractions__wrapper {
        display: grid;
        grid-template-columns: repeat( 4, 1fr );
    }
    .attractionItem {
        grid-column: span 2;
    }
    
    .attractionItem:last-child {
        grid-column: 2 / span 2;
    }
    .cooperation{
        display: flex;  
        flex-direction: row;
    }
    .cooperation>a{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50%;
    }
}

@media (min-width: 768px) {

}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {
    .attractions__wrapper {
        display: grid;
        grid-template-columns: repeat( 3, 1fr );
    }
    .attractionItem {
        grid-column: span 1;
        margin: 20px;
    }
    .attractionItem i{
        font-size: 60px;}
    .attractionItem:last-child {
        grid-column: 2 / span 1;
    }
    .attractions h2{
        margin-bottom: 40px;
    }
    h1 p{
        font-size: 30px;
        padding-left: 30px;
        padding-right: 30px;
    }
    
}