@import url('https://fonts.googleapis.com/css?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css?family=Playfair+Display&display=swap');
*{
    box-sizing: border-box;
    padding: 0.5%;
    background-color: black;
    color: white;
    font-family: 'Playfair Display', serif;
}
header{
    text-align: center !important;
    background-size: cover;
}
header h1{
    font-family: 'Dancing Script', cursive !important;
    color: white;
    position: absolute;
    display: table-cell;
    vertical-align: middle;
    margin: auto;
    text-align: center !important;
}
header h4{
    background-color: white;
    color: black !important;

}
#particles-js{
    width: 100%;
    height: 100px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
nav{
    position: sticky;
    top: 0;
    line-height: 0px;
    padding: 0.1% !important;
    z-index: 2;
}
nav ul{
    display: flex;  
}
nav li{
    list-style: none;
    flex: 0.1;
}
nav a{
    padding: 8px;
    color: #fff;
}
nav a:hover{
    text-decoration: none;
    background-color: white;
    color: black;
    font-weight: bold;
}
nav .current{
    text-decoration: none;
    background-color: white;
    color: black;
    font-weight: bold;
}
#center {
    background:	transparent;
    margin: auto;
    width: 100%;
    padding: 0px;
    
    
    }
.label{
    position: relative;
    color: #fff;
}

.mySlides{
    display: none;
    vertical-align: middle;
}
.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
#dots{
    padding-bottom: 10px;
}

.slideshow-container {
    max-width: 950px;
    /* position: relative; */
    margin: auto;  
    padding-top:15px;    
    z-index: 1;
}
.active {
    background-color: #717171;
}
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}
div img{
    width: 100%;
    height: 100%;
}
.copyright{
    text-align: center;
}
@media all and (min-width: 881px){
    #toggle{
        visibility: hidden;
    }
    .label{
        visibility: hidden;
    }
}
@media all and (max-width: 880px){
    nav{
        line-height: 20px;
    }
    nav ul{
        text-align: center;
        display: none;
        flex-direction: column;
        padding-top: 0.1em;
        background-color: transparent;
    }
    nav ul li{
        width: 100%;
        text-align: center;
        flex: auto;
        background-color: rgb(180, 180, 180);
        position: relative;
        flex-basis: 50%; 
    }
    nav ul li a{
        opacity: 1;
    }
    #navbar a{
        display: block;
        margin: 0;
        color: black;
        padding: 2px;
    }
    #navbar a:hover{
        text-decoration: none;
        background-color: black;
        color: #fff;
    }
    #navbar .current{
        text-decoration: none;
        background-color: black;
        color: #fff;
    }
    #toggle:checked+#navbar{
        display: block;
    }
    #toggle{
        display: none;
    }
    .label{
        display: block;
        cursor: pointer;
        text-align: right;
    }
}
@media all and (max-width: 400px){
    nav li{
      flex-basis: 100%;
    }
}