body {
    font-family: Arial, Helvetica, sans-serif;
}

body, html {
    height: 100%;
}

.img-1, .img-2 {
    position: relative;
    opacity: 0.7;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.img-1 {
    min-height: 100%;
    background-image: url('img/img1.jpg');
}

.img-2 {
    min-height: 500px;
    background-image: url('img/img2.jpg');
}

.title {
    position: absolute;
    text-align: center;
    color: #fff;
    font-family: Dancing Script;
    font-size: 100px;
    left: 0;
    top: 40%;
    width: 100%;
}

h3 {
    font-size: 40px;
    font-family: Dancing Script;
    text-align: center;
}

.paragraph {
    color: #777;
    background-color: white;
    text-align: justify;
    text-justify: inter-world;
    padding: 50px 70px;
    width: 60%;
    margin: auto;
    line-height: 1.6;
    font-size: 18px;
}

@media screen and (max-width: 800px) {
    .paragraph {
        width: 90%;
        padding: 30px 10px;
    }
}

.iframemap {
    display: block;
    margin: auto;
    width: 80%;
    height: 400px;
    border-style: none;
}

.parkingmap {
    display: block;
    width: 80%;
    margin: auto;
}

@media screen and (max-width: 800px) {
    .iframemap {
        width: 100%;
    }

    .parkingmap {
        width: 100%;
    }
}

@supports (-webkit-touch-callout: none) {
    .img-1, .img-2, .img-3, .img-4, .img-5 {
        background-attachment: scroll;
    }
}

.gallery_container {
    position: relative;
    margin: auto;
    max-width: 1080px;
}

.gallery_picture {
    display: none;
}

.dots_container {
    text-align: center;
}

.dot {
    cursor: pointer;
    height: 50px;
    width: 50px;
    background-color: powderblue;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    box-sizing: border-box;
}

.active, .dot:hover {
    background-color: #717171;
}

.fade {
    animation: fade 2s;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}
